"
+ ],
+ "text/plain": [
+ " GEO SEX CAS POB OCC \\\n",
+ "0 Belgium F POP TOTAL Not applicable \n",
+ "1 Belgium F POP TOTAL Not applicable \n",
+ "2 Belgium F POP TOTAL Not applicable \n",
+ "3 Belgium F POP TOTAL Not applicable \n",
+ "4 Belgium F POP TOTAL Not applicable \n",
+ "\n",
+ " IND AGE TIME VALUE FLAGS FOOTNOTES \n",
+ "0 Agriculture, forestry and fishing   Y15-29 2011 0 NaN NaN \n",
+ "1 Agriculture, forestry and fishing   Y30-49 2011 0 NaN NaN \n",
+ "2 Agriculture, forestry and fishing   Y50-64 2011 0 NaN NaN \n",
+ "3 Agriculture, forestry and fishing   Y65-84 2011 0 NaN NaN \n",
+ "4 Agriculture, forestry and fishing   Y_GE85 2011 0 NaN NaN "
+ ]
+ },
+ "execution_count": 5,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "data = pd.read_csv(\"Age_Industry.csv\", sep=\";\", encoding = \"unicode_escape\")\n",
+ "data.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "array(['0', '553484', '314136', ..., '23560', '9960', '8190'],\n",
+ " dtype=object)"
+ ]
+ },
+ "execution_count": 6,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "data[\"VALUE\"].unique()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Dropping unnecessary columns:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
GEO
\n",
+ "
SEX
\n",
+ "
OCC
\n",
+ "
IND
\n",
+ "
AGE
\n",
+ "
VALUE
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y15-29
\n",
+ "
0
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y30-49
\n",
+ "
0
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y50-64
\n",
+ "
0
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " GEO SEX OCC IND AGE \\\n",
+ "0 Belgium F Not applicable Agriculture, forestry and fishing   Y15-29 \n",
+ "1 Belgium F Not applicable Agriculture, forestry and fishing   Y30-49 \n",
+ "2 Belgium F Not applicable Agriculture, forestry and fishing   Y50-64 \n",
+ "\n",
+ " VALUE \n",
+ "0 0 \n",
+ "1 0 \n",
+ "2 0 "
+ ]
+ },
+ "execution_count": 7,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "ds = data.drop(columns=[\"TIME\", \"POB\", \"CAS\", \"FLAGS\", \"FOOTNOTES\"])\n",
+ "ds.head(3)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Checking with describe() method:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
GEO
\n",
+ "
SEX
\n",
+ "
OCC
\n",
+ "
IND
\n",
+ "
AGE
\n",
+ "
VALUE
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
count
\n",
+ "
96048
\n",
+ "
96048
\n",
+ "
96048
\n",
+ "
96048
\n",
+ "
96048
\n",
+ "
96048
\n",
+ "
\n",
+ "
\n",
+ "
unique
\n",
+ "
29
\n",
+ "
2
\n",
+ "
12
\n",
+ "
23
\n",
+ "
6
\n",
+ "
6718
\n",
+ "
\n",
+ "
\n",
+ "
top
\n",
+ "
Malta
\n",
+ "
F
\n",
+ "
Managers
\n",
+ "
Education
\n",
+ "
Y65-84
\n",
+ "
0
\n",
+ "
\n",
+ "
\n",
+ "
freq
\n",
+ "
3312
\n",
+ "
48024
\n",
+ "
8004
\n",
+ "
4176
\n",
+ "
16008
\n",
+ "
56937
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " GEO SEX OCC IND AGE VALUE\n",
+ "count 96048 96048 96048 96048 96048 96048\n",
+ "unique 29 2 12 23 6 6718\n",
+ "top Malta F Managers Education   Y65-84 0\n",
+ "freq 3312 48024 8004 4176 16008 56937"
+ ]
+ },
+ "execution_count": 8,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "ds.describe()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "\"\\ncommands in linux:\\nhead \\n\\nfile \\n# type\\n\\nawk 'NR==3' \\n# prints file\\n\\nwc -l \\n# word count -line\\n\""
+ ]
+ },
+ "execution_count": 9,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "\"\"\"\n",
+ "commands in linux:\n",
+ "head \n",
+ "\n",
+ "file \n",
+ "# type\n",
+ "\n",
+ "awk 'NR==3' \n",
+ "# prints file\n",
+ "\n",
+ "wc -l \n",
+ "# word count -line\n",
+ "\"\"\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Rename columns:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "ds.columns = [\"Country\", \"Sex\", \"Occupation\", \"Industry\", \"Age\", \"Value\"]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "0 0\n",
+ "1 0\n",
+ "2 0\n",
+ "3 0\n",
+ "4 0\n",
+ " ..\n",
+ "96043 0\n",
+ "96044 0\n",
+ "96045 0\n",
+ "96046 0\n",
+ "96047 0\n",
+ "Name: Value, Length: 96048, dtype: object"
+ ]
+ },
+ "execution_count": 11,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "ds.Value"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Taking out the all the rows without values."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/home/jan/.local/lib/python3.6/site-packages/ipykernel_launcher.py:2: SettingWithCopyWarning: \n",
+ "A value is trying to be set on a copy of a slice from a DataFrame.\n",
+ "Try using .loc[row_indexer,col_indexer] = value instead\n",
+ "\n",
+ "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
+ " \n"
+ ]
+ }
+ ],
+ "source": [
+ "ds1 = ds[\":\"!=ds[\"Value\"]]\n",
+ "ds1[\"Value\"] = [int(i) for i in ds1[\"Value\"]]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Adding a count just to check for the amount of grouped rows when using groupby() later"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/home/jan/.local/lib/python3.6/site-packages/ipykernel_launcher.py:1: SettingWithCopyWarning: \n",
+ "A value is trying to be set on a copy of a slice from a DataFrame.\n",
+ "Try using .loc[row_indexer,col_indexer] = value instead\n",
+ "\n",
+ "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
+ " \"\"\"Entry point for launching an IPython kernel.\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
Country
\n",
+ "
Sex
\n",
+ "
Occupation
\n",
+ "
Industry
\n",
+ "
Age
\n",
+ "
Value
\n",
+ "
count
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y15-29
\n",
+ "
0
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y30-49
\n",
+ "
0
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y50-64
\n",
+ "
0
\n",
+ "
1
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Country Sex Occupation Industry Age \\\n",
+ "0 Belgium F Not applicable Agriculture, forestry and fishing   Y15-29 \n",
+ "1 Belgium F Not applicable Agriculture, forestry and fishing   Y30-49 \n",
+ "2 Belgium F Not applicable Agriculture, forestry and fishing   Y50-64 \n",
+ "\n",
+ " Value count \n",
+ "0 0 1 \n",
+ "1 0 1 \n",
+ "2 0 1 "
+ ]
+ },
+ "execution_count": 13,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "ds1[\"count\"]=1\n",
+ "ds1.head(3)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Taking out countries that only have summed values and value 0 :"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/home/jan/.local/lib/python3.6/site-packages/ipykernel_launcher.py:2: SettingWithCopyWarning: \n",
+ "A value is trying to be set on a copy of a slice from a DataFrame.\n",
+ "Try using .loc[row_indexer,col_indexer] = value instead\n",
+ "\n",
+ "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
+ " \n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
Country
\n",
+ "
Sex
\n",
+ "
Occupation
\n",
+ "
Industry
\n",
+ "
Age
\n",
+ "
Value
\n",
+ "
count
\n",
+ "
mark
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y15-29
\n",
+ "
0
\n",
+ "
1
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y30-49
\n",
+ "
0
\n",
+ "
1
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y50-64
\n",
+ "
0
\n",
+ "
1
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y65-84
\n",
+ "
0
\n",
+ "
1
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y_GE85
\n",
+ "
0
\n",
+ "
1
\n",
+ "
1
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Country Sex Occupation Industry Age \\\n",
+ "0 Belgium F Not applicable Agriculture, forestry and fishing   Y15-29 \n",
+ "1 Belgium F Not applicable Agriculture, forestry and fishing   Y30-49 \n",
+ "2 Belgium F Not applicable Agriculture, forestry and fishing   Y50-64 \n",
+ "3 Belgium F Not applicable Agriculture, forestry and fishing   Y65-84 \n",
+ "4 Belgium F Not applicable Agriculture, forestry and fishing   Y_GE85 \n",
+ "\n",
+ " Value count mark \n",
+ "0 0 1 1 \n",
+ "1 0 1 1 \n",
+ "2 0 1 1 \n",
+ "3 0 1 1 \n",
+ "4 0 1 1 "
+ ]
+ },
+ "execution_count": 14,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "out = [\"DK\", \"ES\", \"FI\", \"IS\", \"IT\", \"LT\", \"NL\", \"NO\", \"SE\"]\n",
+ "ds1[\"mark\"] = [1 if i not in out else 0 for i in ds1[\"Country\"]]\n",
+ "ds1.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
Country
\n",
+ "
Sex
\n",
+ "
Occupation
\n",
+ "
Industry
\n",
+ "
Age
\n",
+ "
Value
\n",
+ "
count
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y15-29
\n",
+ "
0
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y30-49
\n",
+ "
0
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y50-64
\n",
+ "
0
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y65-84
\n",
+ "
0
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y_GE85
\n",
+ "
0
\n",
+ "
1
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Country Sex Occupation Industry Age \\\n",
+ "0 Belgium F Not applicable Agriculture, forestry and fishing   Y15-29 \n",
+ "1 Belgium F Not applicable Agriculture, forestry and fishing   Y30-49 \n",
+ "2 Belgium F Not applicable Agriculture, forestry and fishing   Y50-64 \n",
+ "3 Belgium F Not applicable Agriculture, forestry and fishing   Y65-84 \n",
+ "4 Belgium F Not applicable Agriculture, forestry and fishing   Y_GE85 \n",
+ "\n",
+ " Value count \n",
+ "0 0 1 \n",
+ "1 0 1 \n",
+ "2 0 1 \n",
+ "3 0 1 \n",
+ "4 0 1 "
+ ]
+ },
+ "execution_count": 15,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "ds1 = ds1[1==ds1[\"mark\"]]\n",
+ "ds1.drop(columns=\"mark\", inplace=True)\n",
+ "ds1.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Testing for summed values and counts :"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
"
+ ],
+ "text/plain": [
+ " Occupation \\\n",
+ "0 Armed forces occupations \n",
+ "1 Armed forces occupations \n",
+ "2 Armed forces occupations \n",
+ "3 Armed forces occupations \n",
+ "4 Armed forces occupations \n",
+ "... ... \n",
+ "1651 Technicians and associate professionals \n",
+ "1652 Technicians and associate professionals \n",
+ "1653 Technicians and associate professionals \n",
+ "1654 Technicians and associate professionals \n",
+ "1655 Technicians and associate professionals \n",
+ "\n",
+ " Industry Age Value count \n",
+ "0 Accommodation and food service activities   Y15-29 1957 53 \n",
+ "1 Accommodation and food service activities   Y30-49 1757 54 \n",
+ "2 Accommodation and food service activities   Y50-64 330 54 \n",
+ "3 Accommodation and food service activities   Y65-84 0 58 \n",
+ "4 Accommodation and food service activities   Y_GE85 0 57 \n",
+ "... ... ... ... ... \n",
+ "1651 Wholesale and retail trade; repair of motor ve... Y30-49 957569 46 \n",
+ "1652 Wholesale and retail trade; repair of motor ve... Y50-64 306077 46 \n",
+ "1653 Wholesale and retail trade; repair of motor ve... Y65-84 18145 45 \n",
+ "1654 Wholesale and retail trade; repair of motor ve... Y_GE85 402 50 \n",
+ "1655 Wholesale and retail trade; repair of motor ve... Y_LT15 0 58 \n",
+ "\n",
+ "[1656 rows x 5 columns]"
+ ]
+ },
+ "execution_count": 18,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "test1 = ds1.groupby([\"Occupation\", \"Industry\", \"Age\"], as_index=False).agg({\"Value\":'sum', 'count':'sum'})\n",
+ "test1"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 19,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
Occupation
\n",
+ "
Industry
\n",
+ "
Age
\n",
+ "
Value
\n",
+ "
count
\n",
+ "
Relative
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
Armed forces occupations
\n",
+ "
Accommodation and food service activities
\n",
+ "
Y15-29
\n",
+ "
1957
\n",
+ "
53
\n",
+ "
0.000007
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
Armed forces occupations
\n",
+ "
Accommodation and food service activities
\n",
+ "
Y30-49
\n",
+ "
1757
\n",
+ "
54
\n",
+ "
0.000007
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
Armed forces occupations
\n",
+ "
Accommodation and food service activities
\n",
+ "
Y50-64
\n",
+ "
330
\n",
+ "
54
\n",
+ "
0.000001
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
Armed forces occupations
\n",
+ "
Accommodation and food service activities
\n",
+ "
Y65-84
\n",
+ "
0
\n",
+ "
58
\n",
+ "
0.000000
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
Armed forces occupations
\n",
+ "
Accommodation and food service activities
\n",
+ "
Y_GE85
\n",
+ "
0
\n",
+ "
57
\n",
+ "
0.000000
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Occupation Industry \\\n",
+ "0 Armed forces occupations Accommodation and food service activities   \n",
+ "1 Armed forces occupations Accommodation and food service activities   \n",
+ "2 Armed forces occupations Accommodation and food service activities   \n",
+ "3 Armed forces occupations Accommodation and food service activities   \n",
+ "4 Armed forces occupations Accommodation and food service activities   \n",
+ "\n",
+ " Age Value count Relative \n",
+ "0 Y15-29 1957 53 0.000007 \n",
+ "1 Y30-49 1757 54 0.000007 \n",
+ "2 Y50-64 330 54 0.000001 \n",
+ "3 Y65-84 0 58 0.000000 \n",
+ "4 Y_GE85 0 57 0.000000 "
+ ]
+ },
+ "execution_count": 19,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "test1[\"Relative\"]= test1['Value']/sum(test1[\"Value\"])\n",
+ "test1.head(5)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Adding Total value per country and relative values over respective country and over relative values over entirety:"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 30,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/home/jan/.local/lib/python3.6/site-packages/ipykernel_launcher.py:2: SettingWithCopyWarning: \n",
+ "A value is trying to be set on a copy of a slice from a DataFrame.\n",
+ "Try using .loc[row_indexer,col_indexer] = value instead\n",
+ "\n",
+ "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
+ " \n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
Country
\n",
+ "
Sex
\n",
+ "
Occupation
\n",
+ "
Industry
\n",
+ "
Age
\n",
+ "
Value
\n",
+ "
count
\n",
+ "
Relative / all countries
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
84
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y15-29
\n",
+ "
553484
\n",
+ "
1
\n",
+ "
0.002109
\n",
+ "
\n",
+ "
\n",
+ "
85
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y30-49
\n",
+ "
314136
\n",
+ "
1
\n",
+ "
0.001197
\n",
+ "
\n",
+ "
\n",
+ "
86
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y50-64
\n",
+ "
529957
\n",
+ "
1
\n",
+ "
0.002020
\n",
+ "
\n",
+ "
\n",
+ "
87
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y65-84
\n",
+ "
899599
\n",
+ "
1
\n",
+ "
0.003428
\n",
+ "
\n",
+ "
\n",
+ "
88
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y_GE85
\n",
+ "
173933
\n",
+ "
1
\n",
+ "
0.000663
\n",
+ "
\n",
+ "
\n",
+ "
89
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y_LT15
\n",
+ "
912815
\n",
+ "
1
\n",
+ "
0.003478
\n",
+ "
\n",
+ "
\n",
+ "
1518
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not stated
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y15-29
\n",
+ "
2027
\n",
+ "
1
\n",
+ "
0.000008
\n",
+ "
\n",
+ "
\n",
+ "
1519
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not stated
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y30-49
\n",
+ "
10266
\n",
+ "
1
\n",
+ "
0.000039
\n",
+ "
\n",
+ "
\n",
+ "
1520
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not stated
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y50-64
\n",
+ "
7651
\n",
+ "
1
\n",
+ "
0.000029
\n",
+ "
\n",
+ "
\n",
+ "
1521
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not stated
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y65-84
\n",
+ "
1184
\n",
+ "
1
\n",
+ "
0.000005
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Country Sex Occupation Industry \\\n",
+ "84 Belgium F Not applicable Not applicable  \n",
+ "85 Belgium F Not applicable Not applicable  \n",
+ "86 Belgium F Not applicable Not applicable  \n",
+ "87 Belgium F Not applicable Not applicable  \n",
+ "88 Belgium F Not applicable Not applicable  \n",
+ "89 Belgium F Not applicable Not applicable  \n",
+ "1518 Belgium F Not stated Agriculture, forestry and fishing   \n",
+ "1519 Belgium F Not stated Agriculture, forestry and fishing   \n",
+ "1520 Belgium F Not stated Agriculture, forestry and fishing   \n",
+ "1521 Belgium F Not stated Agriculture, forestry and fishing   \n",
+ "\n",
+ " Age Value count Relative / all countries \n",
+ "84 Y15-29 553484 1 0.002109 \n",
+ "85 Y30-49 314136 1 0.001197 \n",
+ "86 Y50-64 529957 1 0.002020 \n",
+ "87 Y65-84 899599 1 0.003428 \n",
+ "88 Y_GE85 173933 1 0.000663 \n",
+ "89 Y_LT15 912815 1 0.003478 \n",
+ "1518 Y15-29 2027 1 0.000008 \n",
+ "1519 Y30-49 10266 1 0.000039 \n",
+ "1520 Y50-64 7651 1 0.000029 \n",
+ "1521 Y65-84 1184 1 0.000005 "
+ ]
+ },
+ "execution_count": 30,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "work = ds1[ds1['Value']!=0]\n",
+ "work[\"Relative / all countries\"]= work['Value']/sum(work[\"Value\"])\n",
+ "work.head(10)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 33,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
Country
\n",
+ "
Sex
\n",
+ "
Occupation
\n",
+ "
Industry
\n",
+ "
Age
\n",
+ "
Value
\n",
+ "
count
\n",
+ "
Relative / all countries
\n",
+ "
Total_Population
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y15-29
\n",
+ "
553484
\n",
+ "
1
\n",
+ "
0.002109
\n",
+ "
11000638
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y30-49
\n",
+ "
314136
\n",
+ "
1
\n",
+ "
0.001197
\n",
+ "
11000638
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y50-64
\n",
+ "
529957
\n",
+ "
1
\n",
+ "
0.002020
\n",
+ "
11000638
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y65-84
\n",
+ "
899599
\n",
+ "
1
\n",
+ "
0.003428
\n",
+ "
11000638
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y_GE85
\n",
+ "
173933
\n",
+ "
1
\n",
+ "
0.000663
\n",
+ "
11000638
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Country Sex Occupation Industry Age Value count \\\n",
+ "0 Belgium F Not applicable Not applicable  Y15-29 553484 1 \n",
+ "1 Belgium F Not applicable Not applicable  Y30-49 314136 1 \n",
+ "2 Belgium F Not applicable Not applicable  Y50-64 529957 1 \n",
+ "3 Belgium F Not applicable Not applicable  Y65-84 899599 1 \n",
+ "4 Belgium F Not applicable Not applicable  Y_GE85 173933 1 \n",
+ "\n",
+ " Relative / all countries Total_Population \n",
+ "0 0.002109 11000638 \n",
+ "1 0.001197 11000638 \n",
+ "2 0.002020 11000638 \n",
+ "3 0.003428 11000638 \n",
+ "4 0.000663 11000638 "
+ ]
+ },
+ "execution_count": 33,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "population = work.groupby(\"Country\", as_index = False).agg({\"Value\":\"sum\"})\n",
+ "new_work = work.merge(population, on = \"Country\")\n",
+ "new_work.columns = [\"Country\", \"Sex\", \"Occupation\", \"Industry\", \"Age\", \"Value\", \"count\", \"Relative / all countries\",\"Total_Population\"]\n",
+ "new_work.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 34,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
Country
\n",
+ "
Sex
\n",
+ "
Occupation
\n",
+ "
Industry
\n",
+ "
Age
\n",
+ "
Value
\n",
+ "
count
\n",
+ "
Relative / all countries
\n",
+ "
Total_Population
\n",
+ "
Relative per country
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y15-29
\n",
+ "
553484
\n",
+ "
1
\n",
+ "
0.002109
\n",
+ "
11000638
\n",
+ "
0.050314
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y30-49
\n",
+ "
314136
\n",
+ "
1
\n",
+ "
0.001197
\n",
+ "
11000638
\n",
+ "
0.028556
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y50-64
\n",
+ "
529957
\n",
+ "
1
\n",
+ "
0.002020
\n",
+ "
11000638
\n",
+ "
0.048175
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y65-84
\n",
+ "
899599
\n",
+ "
1
\n",
+ "
0.003428
\n",
+ "
11000638
\n",
+ "
0.081777
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y_GE85
\n",
+ "
173933
\n",
+ "
1
\n",
+ "
0.000663
\n",
+ "
11000638
\n",
+ "
0.015811
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Country Sex Occupation Industry Age Value count \\\n",
+ "0 Belgium F Not applicable Not applicable  Y15-29 553484 1 \n",
+ "1 Belgium F Not applicable Not applicable  Y30-49 314136 1 \n",
+ "2 Belgium F Not applicable Not applicable  Y50-64 529957 1 \n",
+ "3 Belgium F Not applicable Not applicable  Y65-84 899599 1 \n",
+ "4 Belgium F Not applicable Not applicable  Y_GE85 173933 1 \n",
+ "\n",
+ " Relative / all countries Total_Population Relative per country \n",
+ "0 0.002109 11000638 0.050314 \n",
+ "1 0.001197 11000638 0.028556 \n",
+ "2 0.002020 11000638 0.048175 \n",
+ "3 0.003428 11000638 0.081777 \n",
+ "4 0.000663 11000638 0.015811 "
+ ]
+ },
+ "execution_count": 34,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "new_work[\"Relative per country\"]= new_work[\"Value\"]/new_work[\"Total_Population\"]\n",
+ "new_work.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Marking population that will exit the work force within the next years by splitting by age. Younger than 50 are marked as 'Young' otherwise 'Old':"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 35,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
Country
\n",
+ "
Sex
\n",
+ "
Occupation
\n",
+ "
Industry
\n",
+ "
Age
\n",
+ "
Value
\n",
+ "
count
\n",
+ "
Relative / all countries
\n",
+ "
Total_Population
\n",
+ "
Relative per country
\n",
+ "
Young
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y15-29
\n",
+ "
553484
\n",
+ "
1
\n",
+ "
0.002109
\n",
+ "
11000638
\n",
+ "
0.050314
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y30-49
\n",
+ "
314136
\n",
+ "
1
\n",
+ "
0.001197
\n",
+ "
11000638
\n",
+ "
0.028556
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y50-64
\n",
+ "
529957
\n",
+ "
1
\n",
+ "
0.002020
\n",
+ "
11000638
\n",
+ "
0.048175
\n",
+ "
0
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y65-84
\n",
+ "
899599
\n",
+ "
1
\n",
+ "
0.003428
\n",
+ "
11000638
\n",
+ "
0.081777
\n",
+ "
0
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y_GE85
\n",
+ "
173933
\n",
+ "
1
\n",
+ "
0.000663
\n",
+ "
11000638
\n",
+ "
0.015811
\n",
+ "
0
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Country Sex Occupation Industry Age Value count \\\n",
+ "0 Belgium F Not applicable Not applicable  Y15-29 553484 1 \n",
+ "1 Belgium F Not applicable Not applicable  Y30-49 314136 1 \n",
+ "2 Belgium F Not applicable Not applicable  Y50-64 529957 1 \n",
+ "3 Belgium F Not applicable Not applicable  Y65-84 899599 1 \n",
+ "4 Belgium F Not applicable Not applicable  Y_GE85 173933 1 \n",
+ "\n",
+ " Relative / all countries Total_Population Relative per country Young \n",
+ "0 0.002109 11000638 0.050314 1 \n",
+ "1 0.001197 11000638 0.028556 1 \n",
+ "2 0.002020 11000638 0.048175 0 \n",
+ "3 0.003428 11000638 0.081777 0 \n",
+ "4 0.000663 11000638 0.015811 0 "
+ ]
+ },
+ "execution_count": 35,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "import re\n",
+ "new_work[\"Young\"] = [1 if i.startswith(\"Y1\") or i.startswith(\"Y3\") else 0 for i in new_work[\"Age\"]]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 36,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
Country
\n",
+ "
Sex
\n",
+ "
Occupation
\n",
+ "
Industry
\n",
+ "
Age
\n",
+ "
Value
\n",
+ "
count
\n",
+ "
Relative / all countries
\n",
+ "
Total_Population
\n",
+ "
Relative per country
\n",
+ "
Young
\n",
+ "
Old
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y15-29
\n",
+ "
553484
\n",
+ "
1
\n",
+ "
0.002109
\n",
+ "
11000638
\n",
+ "
0.050314
\n",
+ "
1
\n",
+ "
0
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y30-49
\n",
+ "
314136
\n",
+ "
1
\n",
+ "
0.001197
\n",
+ "
11000638
\n",
+ "
0.028556
\n",
+ "
1
\n",
+ "
0
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y50-64
\n",
+ "
529957
\n",
+ "
1
\n",
+ "
0.002020
\n",
+ "
11000638
\n",
+ "
0.048175
\n",
+ "
0
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y65-84
\n",
+ "
899599
\n",
+ "
1
\n",
+ "
0.003428
\n",
+ "
11000638
\n",
+ "
0.081777
\n",
+ "
0
\n",
+ "
1
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Country Sex Occupation Industry Age Value count \\\n",
+ "0 Belgium F Not applicable Not applicable  Y15-29 553484 1 \n",
+ "1 Belgium F Not applicable Not applicable  Y30-49 314136 1 \n",
+ "2 Belgium F Not applicable Not applicable  Y50-64 529957 1 \n",
+ "3 Belgium F Not applicable Not applicable  Y65-84 899599 1 \n",
+ "\n",
+ " Relative / all countries Total_Population Relative per country Young \\\n",
+ "0 0.002109 11000638 0.050314 1 \n",
+ "1 0.001197 11000638 0.028556 1 \n",
+ "2 0.002020 11000638 0.048175 0 \n",
+ "3 0.003428 11000638 0.081777 0 \n",
+ "\n",
+ " Old \n",
+ "0 0 \n",
+ "1 0 \n",
+ "2 1 \n",
+ "3 1 "
+ ]
+ },
+ "execution_count": 36,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "new_work[\"Old\"] = [0 if i.startswith(\"Y1\") or i.startswith(\"Y3\") else 1 for i in new_work[\"Age\"]]\n",
+ "new_work.head(4)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 39,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
Country
\n",
+ "
Sex
\n",
+ "
Occupation
\n",
+ "
Industry
\n",
+ "
Age
\n",
+ "
Value
\n",
+ "
count
\n",
+ "
Relative / all countries
\n",
+ "
Total_Population
\n",
+ "
Relative per country
\n",
+ "
Young
\n",
+ "
Old
\n",
+ "
Young or Old
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y15-29
\n",
+ "
553484
\n",
+ "
1
\n",
+ "
0.002109
\n",
+ "
11000638
\n",
+ "
0.050314
\n",
+ "
1
\n",
+ "
0
\n",
+ "
Young
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y30-49
\n",
+ "
314136
\n",
+ "
1
\n",
+ "
0.001197
\n",
+ "
11000638
\n",
+ "
0.028556
\n",
+ "
1
\n",
+ "
0
\n",
+ "
Young
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y50-64
\n",
+ "
529957
\n",
+ "
1
\n",
+ "
0.002020
\n",
+ "
11000638
\n",
+ "
0.048175
\n",
+ "
0
\n",
+ "
1
\n",
+ "
Old
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y65-84
\n",
+ "
899599
\n",
+ "
1
\n",
+ "
0.003428
\n",
+ "
11000638
\n",
+ "
0.081777
\n",
+ "
0
\n",
+ "
1
\n",
+ "
Old
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y_GE85
\n",
+ "
173933
\n",
+ "
1
\n",
+ "
0.000663
\n",
+ "
11000638
\n",
+ "
0.015811
\n",
+ "
0
\n",
+ "
1
\n",
+ "
Old
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Country Sex Occupation Industry Age Value count \\\n",
+ "0 Belgium F Not applicable Not applicable  Y15-29 553484 1 \n",
+ "1 Belgium F Not applicable Not applicable  Y30-49 314136 1 \n",
+ "2 Belgium F Not applicable Not applicable  Y50-64 529957 1 \n",
+ "3 Belgium F Not applicable Not applicable  Y65-84 899599 1 \n",
+ "4 Belgium F Not applicable Not applicable  Y_GE85 173933 1 \n",
+ "\n",
+ " Relative / all countries Total_Population Relative per country Young \\\n",
+ "0 0.002109 11000638 0.050314 1 \n",
+ "1 0.001197 11000638 0.028556 1 \n",
+ "2 0.002020 11000638 0.048175 0 \n",
+ "3 0.003428 11000638 0.081777 0 \n",
+ "4 0.000663 11000638 0.015811 0 \n",
+ "\n",
+ " Old Young or Old \n",
+ "0 0 Young \n",
+ "1 0 Young \n",
+ "2 1 Old \n",
+ "3 1 Old \n",
+ "4 1 Old "
+ ]
+ },
+ "execution_count": 39,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "new_work[\"Young or Old\"] = [\"Young\" if i.startswith(\"Y1\") or i.startswith(\"Y3\") else \"Old\" for i in new_work[\"Age\"]]\n",
+ "new_work.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 21,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "\"\\nwork.loc[work['Country'].str.startswith('BE'), 'Country'] = 'Belgium'\\nwork.loc[work['Country'].str.startswith('BG'), 'Country'] = 'Bulgaria'\\nwork.loc[work['Country'].str.startswith('CY'), 'Country'] = 'Cyprus'\\nwork.loc[work['Country'].str.startswith('CZ'), 'Country'] = 'Czechia'\\nwork.loc[work['Country'].str.startswith('EE'), 'Country'] = 'Estonia'\\nwork.loc[work['Country'].str.startswith('EL'), 'Country'] = 'Greece'\\nwork.loc[work['Country'].str.startswith('FR'), 'Country'] = 'France'\\nwork.loc[work['Country'].str.startswith('HR'), 'Country'] = 'Croatia'\\nwork.loc[work['Country'].str.startswith('HU'), 'Country'] = 'Hungary'\\nwork.loc[work['Country'].str.startswith('IE'), 'Country'] = 'Ireland'\\nwork.loc[work['Country'].str.startswith('LI'), 'Country'] = 'Lithuania'\\nwork.loc[work['Country'].str.startswith('LU'), 'Country'] = 'Luxembourg'\\nwork.loc[work['Country'].str.startswith('LV'), 'Country'] = 'Latvia'\\nwork.loc[work['Country'].str.startswith('MT'), 'Country'] = 'Malta'\\nwork.loc[work['Country'].str.startswith('PL'), 'Country'] = 'Poland'\\nwork.loc[work['Country'].str.startswith('PT'), 'Country'] = 'Portugal'\\nwork.loc[work['Country'].str.startswith('RO'), 'Country'] = 'Romania'\\nwork.loc[work['Country'].str.startswith('SI'), 'Country'] = 'Slovenia'\\nwork.loc[work['Country'].str.startswith('SK'), 'Country'] = 'Slovakia'\\nwork.loc[work['Country'].str.startswith('UK'), 'Country'] = 'United Kingdom'\\nwork.head()\\n\""
+ ]
+ },
+ "execution_count": 21,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "\"\"\"\n",
+ "work.loc[work['Country'].str.startswith('BE'), 'Country'] = 'Belgium'\n",
+ "work.loc[work['Country'].str.startswith('BG'), 'Country'] = 'Bulgaria'\n",
+ "work.loc[work['Country'].str.startswith('CY'), 'Country'] = 'Cyprus'\n",
+ "work.loc[work['Country'].str.startswith('CZ'), 'Country'] = 'Czechia'\n",
+ "work.loc[work['Country'].str.startswith('EE'), 'Country'] = 'Estonia'\n",
+ "work.loc[work['Country'].str.startswith('EL'), 'Country'] = 'Greece'\n",
+ "work.loc[work['Country'].str.startswith('FR'), 'Country'] = 'France'\n",
+ "work.loc[work['Country'].str.startswith('HR'), 'Country'] = 'Croatia'\n",
+ "work.loc[work['Country'].str.startswith('HU'), 'Country'] = 'Hungary'\n",
+ "work.loc[work['Country'].str.startswith('IE'), 'Country'] = 'Ireland'\n",
+ "work.loc[work['Country'].str.startswith('LI'), 'Country'] = 'Lithuania'\n",
+ "work.loc[work['Country'].str.startswith('LU'), 'Country'] = 'Luxembourg'\n",
+ "work.loc[work['Country'].str.startswith('LV'), 'Country'] = 'Latvia'\n",
+ "work.loc[work['Country'].str.startswith('MT'), 'Country'] = 'Malta'\n",
+ "work.loc[work['Country'].str.startswith('PL'), 'Country'] = 'Poland'\n",
+ "work.loc[work['Country'].str.startswith('PT'), 'Country'] = 'Portugal'\n",
+ "work.loc[work['Country'].str.startswith('RO'), 'Country'] = 'Romania'\n",
+ "work.loc[work['Country'].str.startswith('SI'), 'Country'] = 'Slovenia'\n",
+ "work.loc[work['Country'].str.startswith('SK'), 'Country'] = 'Slovakia'\n",
+ "work.loc[work['Country'].str.startswith('UK'), 'Country'] = 'United Kingdom'\n",
+ "work.head()\n",
+ "\"\"\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Just checking the values and counts per industry"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 22,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
Occupation
\n",
+ "
Industry
\n",
+ "
Age
\n",
+ "
Value
\n",
+ "
count
\n",
+ "
Relative
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
Armed forces occupations
\n",
+ "
Accommodation and food service activities
\n",
+ "
Y15-29
\n",
+ "
1957
\n",
+ "
4
\n",
+ "
7.457594e-06
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
Armed forces occupations
\n",
+ "
Accommodation and food service activities
\n",
+ "
Y30-49
\n",
+ "
1757
\n",
+ "
7
\n",
+ "
6.695448e-06
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
Armed forces occupations
\n",
+ "
Accommodation and food service activities
\n",
+ "
Y50-64
\n",
+ "
330
\n",
+ "
6
\n",
+ "
1.257540e-06
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
Armed forces occupations
\n",
+ "
Activities of extraterritorial organisations a...
\n",
+ "
Y15-29
\n",
+ "
219
\n",
+ "
7
\n",
+ "
8.345493e-07
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
Armed forces occupations
\n",
+ "
Activities of extraterritorial organisations a...
\n",
+ "
Y30-49
\n",
+ "
908
\n",
+ "
13
\n",
+ "
3.460140e-06
\n",
+ "
\n",
+ "
\n",
+ "
5
\n",
+ "
Armed forces occupations
\n",
+ "
Activities of extraterritorial organisations a...
\n",
+ "
Y50-64
\n",
+ "
78
\n",
+ "
10
\n",
+ "
2.972367e-07
\n",
+ "
\n",
+ "
\n",
+ "
6
\n",
+ "
Armed forces occupations
\n",
+ "
Activities of households as employers; undiffe...
\n",
+ "
Y15-29
\n",
+ "
1
\n",
+ "
1
\n",
+ "
3.810727e-09
\n",
+ "
\n",
+ "
\n",
+ "
7
\n",
+ "
Armed forces occupations
\n",
+ "
Activities of households as employers; undiffe...
\n",
+ "
Y30-49
\n",
+ "
21
\n",
+ "
3
\n",
+ "
8.002528e-08
\n",
+ "
\n",
+ "
\n",
+ "
8
\n",
+ "
Armed forces occupations
\n",
+ "
Activities of households as employers; undiffe...
\n",
+ "
Y65-84
\n",
+ "
3
\n",
+ "
1
\n",
+ "
1.143218e-08
\n",
+ "
\n",
+ "
\n",
+ "
9
\n",
+ "
Armed forces occupations
\n",
+ "
Administrative and support service activities
\n",
+ "
Y15-29
\n",
+ "
1417
\n",
+ "
11
\n",
+ "
5.399801e-06
\n",
+ "
\n",
+ "
\n",
+ "
10
\n",
+ "
Armed forces occupations
\n",
+ "
Administrative and support service activities
\n",
+ "
Y30-49
\n",
+ "
4231
\n",
+ "
10
\n",
+ "
1.612319e-05
\n",
+ "
\n",
+ "
\n",
+ "
11
\n",
+ "
Armed forces occupations
\n",
+ "
Administrative and support service activities
\n",
+ "
Y50-64
\n",
+ "
599
\n",
+ "
8
\n",
+ "
2.282626e-06
\n",
+ "
\n",
+ "
\n",
+ "
12
\n",
+ "
Armed forces occupations
\n",
+ "
Administrative and support service activities
\n",
+ "
Y65-84
\n",
+ "
25
\n",
+ "
4
\n",
+ "
9.526818e-08
\n",
+ "
\n",
+ "
\n",
+ "
13
\n",
+ "
Armed forces occupations
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y15-29
\n",
+ "
127
\n",
+ "
4
\n",
+ "
4.839624e-07
\n",
+ "
\n",
+ "
\n",
+ "
14
\n",
+ "
Armed forces occupations
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y30-49
\n",
+ "
286
\n",
+ "
5
\n",
+ "
1.089868e-06
\n",
+ "
\n",
+ "
\n",
+ "
15
\n",
+ "
Armed forces occupations
\n",
+ "
Agriculture, forestry and fishing
\n",
+ "
Y50-64
\n",
+ "
72
\n",
+ "
5
\n",
+ "
2.743724e-07
\n",
+ "
\n",
+ "
\n",
+ "
16
\n",
+ "
Armed forces occupations
\n",
+ "
Arts, entertainment and recreation
\n",
+ "
Y15-29
\n",
+ "
478
\n",
+ "
9
\n",
+ "
1.821528e-06
\n",
+ "
\n",
+ "
\n",
+ "
17
\n",
+ "
Armed forces occupations
\n",
+ "
Arts, entertainment and recreation
\n",
+ "
Y30-49
\n",
+ "
738
\n",
+ "
12
\n",
+ "
2.812317e-06
\n",
+ "
\n",
+ "
\n",
+ "
18
\n",
+ "
Armed forces occupations
\n",
+ "
Arts, entertainment and recreation
\n",
+ "
Y50-64
\n",
+ "
177
\n",
+ "
5
\n",
+ "
6.744987e-07
\n",
+ "
\n",
+ "
\n",
+ "
19
\n",
+ "
Armed forces occupations
\n",
+ "
Construction
\n",
+ "
Y15-29
\n",
+ "
397
\n",
+ "
6
\n",
+ "
1.512859e-06
\n",
+ "
\n",
+ "
\n",
+ "
20
\n",
+ "
Armed forces occupations
\n",
+ "
Construction
\n",
+ "
Y30-49
\n",
+ "
502
\n",
+ "
6
\n",
+ "
1.912985e-06
\n",
+ "
\n",
+ "
\n",
+ "
21
\n",
+ "
Armed forces occupations
\n",
+ "
Construction
\n",
+ "
Y50-64
\n",
+ "
140
\n",
+ "
4
\n",
+ "
5.335018e-07
\n",
+ "
\n",
+ "
\n",
+ "
22
\n",
+ "
Armed forces occupations
\n",
+ "
Education
\n",
+ "
Y15-29
\n",
+ "
1668
\n",
+ "
14
\n",
+ "
6.356293e-06
\n",
+ "
\n",
+ "
\n",
+ "
23
\n",
+ "
Armed forces occupations
\n",
+ "
Education
\n",
+ "
Y30-49
\n",
+ "
2026
\n",
+ "
13
\n",
+ "
7.720534e-06
\n",
+ "
\n",
+ "
\n",
+ "
24
\n",
+ "
Armed forces occupations
\n",
+ "
Education
\n",
+ "
Y50-64
\n",
+ "
344
\n",
+ "
10
\n",
+ "
1.310890e-06
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Occupation \\\n",
+ "0 Armed forces occupations \n",
+ "1 Armed forces occupations \n",
+ "2 Armed forces occupations \n",
+ "3 Armed forces occupations \n",
+ "4 Armed forces occupations \n",
+ "5 Armed forces occupations \n",
+ "6 Armed forces occupations \n",
+ "7 Armed forces occupations \n",
+ "8 Armed forces occupations \n",
+ "9 Armed forces occupations \n",
+ "10 Armed forces occupations \n",
+ "11 Armed forces occupations \n",
+ "12 Armed forces occupations \n",
+ "13 Armed forces occupations \n",
+ "14 Armed forces occupations \n",
+ "15 Armed forces occupations \n",
+ "16 Armed forces occupations \n",
+ "17 Armed forces occupations \n",
+ "18 Armed forces occupations \n",
+ "19 Armed forces occupations \n",
+ "20 Armed forces occupations \n",
+ "21 Armed forces occupations \n",
+ "22 Armed forces occupations \n",
+ "23 Armed forces occupations \n",
+ "24 Armed forces occupations \n",
+ "\n",
+ " Industry Age Value count \\\n",
+ "0 Accommodation and food service activities   Y15-29 1957 4 \n",
+ "1 Accommodation and food service activities   Y30-49 1757 7 \n",
+ "2 Accommodation and food service activities   Y50-64 330 6 \n",
+ "3 Activities of extraterritorial organisations a... Y15-29 219 7 \n",
+ "4 Activities of extraterritorial organisations a... Y30-49 908 13 \n",
+ "5 Activities of extraterritorial organisations a... Y50-64 78 10 \n",
+ "6 Activities of households as employers; undiffe... Y15-29 1 1 \n",
+ "7 Activities of households as employers; undiffe... Y30-49 21 3 \n",
+ "8 Activities of households as employers; undiffe... Y65-84 3 1 \n",
+ "9 Administrative and support service activities   Y15-29 1417 11 \n",
+ "10 Administrative and support service activities   Y30-49 4231 10 \n",
+ "11 Administrative and support service activities   Y50-64 599 8 \n",
+ "12 Administrative and support service activities   Y65-84 25 4 \n",
+ "13 Agriculture, forestry and fishing   Y15-29 127 4 \n",
+ "14 Agriculture, forestry and fishing   Y30-49 286 5 \n",
+ "15 Agriculture, forestry and fishing   Y50-64 72 5 \n",
+ "16 Arts, entertainment and recreation   Y15-29 478 9 \n",
+ "17 Arts, entertainment and recreation   Y30-49 738 12 \n",
+ "18 Arts, entertainment and recreation   Y50-64 177 5 \n",
+ "19 Construction   Y15-29 397 6 \n",
+ "20 Construction   Y30-49 502 6 \n",
+ "21 Construction   Y50-64 140 4 \n",
+ "22 Education   Y15-29 1668 14 \n",
+ "23 Education   Y30-49 2026 13 \n",
+ "24 Education   Y50-64 344 10 \n",
+ "\n",
+ " Relative \n",
+ "0 7.457594e-06 \n",
+ "1 6.695448e-06 \n",
+ "2 1.257540e-06 \n",
+ "3 8.345493e-07 \n",
+ "4 3.460140e-06 \n",
+ "5 2.972367e-07 \n",
+ "6 3.810727e-09 \n",
+ "7 8.002528e-08 \n",
+ "8 1.143218e-08 \n",
+ "9 5.399801e-06 \n",
+ "10 1.612319e-05 \n",
+ "11 2.282626e-06 \n",
+ "12 9.526818e-08 \n",
+ "13 4.839624e-07 \n",
+ "14 1.089868e-06 \n",
+ "15 2.743724e-07 \n",
+ "16 1.821528e-06 \n",
+ "17 2.812317e-06 \n",
+ "18 6.744987e-07 \n",
+ "19 1.512859e-06 \n",
+ "20 1.912985e-06 \n",
+ "21 5.335018e-07 \n",
+ "22 6.356293e-06 \n",
+ "23 7.720534e-06 \n",
+ "24 1.310890e-06 "
+ ]
+ },
+ "execution_count": 22,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "work2 = work.groupby([\"Occupation\", \"Industry\", \"Age\"], as_index=False).agg({\"Value\":'sum', 'count':'sum'})\n",
+ "work2[\"Relative value over \"]= work2['Value']/sum(work2[\"Value\"])\n",
+ "work2.head(25)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 23,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "(1181, 6)"
+ ]
+ },
+ "execution_count": 23,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "work2.shape"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 24,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "(27766, 8)"
+ ]
+ },
+ "execution_count": 24,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "work.shape"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 26,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
Country
\n",
+ "
Sex
\n",
+ "
Occupation
\n",
+ "
Industry
\n",
+ "
Age
\n",
+ "
Value
\n",
+ "
count
\n",
+ "
Relative
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
84
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y15-29
\n",
+ "
553484
\n",
+ "
1
\n",
+ "
0.002109
\n",
+ "
\n",
+ "
\n",
+ "
85
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y30-49
\n",
+ "
314136
\n",
+ "
1
\n",
+ "
0.001197
\n",
+ "
\n",
+ "
\n",
+ "
86
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y50-64
\n",
+ "
529957
\n",
+ "
1
\n",
+ "
0.002020
\n",
+ "
\n",
+ "
\n",
+ "
87
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y65-84
\n",
+ "
899599
\n",
+ "
1
\n",
+ "
0.003428
\n",
+ "
\n",
+ "
\n",
+ "
88
\n",
+ "
Belgium
\n",
+ "
F
\n",
+ "
Not applicable
\n",
+ "
Not applicable
\n",
+ "
Y_GE85
\n",
+ "
173933
\n",
+ "
1
\n",
+ "
0.000663
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Country Sex Occupation Industry Age Value count \\\n",
+ "84 Belgium F Not applicable Not applicable  Y15-29 553484 1 \n",
+ "85 Belgium F Not applicable Not applicable  Y30-49 314136 1 \n",
+ "86 Belgium F Not applicable Not applicable  Y50-64 529957 1 \n",
+ "87 Belgium F Not applicable Not applicable  Y65-84 899599 1 \n",
+ "88 Belgium F Not applicable Not applicable  Y_GE85 173933 1 \n",
+ "\n",
+ " Relative \n",
+ "84 0.002109 \n",
+ "85 0.001197 \n",
+ "86 0.002020 \n",
+ "87 0.003428 \n",
+ "88 0.000663 "
+ ]
+ },
+ "execution_count": 26,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "work.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Creating the csv file that we will analyse in tableau"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [
+ {
+ "ename": "NameError",
+ "evalue": "name 'new_work' is not defined",
+ "output_type": "error",
+ "traceback": [
+ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
+ "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)",
+ "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mnew_work\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mto_csv\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"work.csv\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msep\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m\";\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
+ "\u001b[0;31mNameError\u001b[0m: name 'new_work' is not defined"
+ ]
+ }
+ ],
+ "source": [
+ "new_work.to_csv(\"work.csv\", sep = \";\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Using the dataset to create an age pyramid"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
GEO
\n",
+ "
SEX
\n",
+ "
AGE
\n",
+ "
TIME
\n",
+ "
VALUE
\n",
+ "
FLAGS
\n",
+ "
FOOTNOTES
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y1
\n",
+ "
2011
\n",
+ "
38858
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y10
\n",
+ "
2011
\n",
+ "
39520
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y11
\n",
+ "
2011
\n",
+ "
40698
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y12
\n",
+ "
2011
\n",
+ "
41040
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y13
\n",
+ "
2011
\n",
+ "
42310
\n",
+ "
NaN
\n",
+ "
NaN
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " GEO SEX AGE TIME VALUE FLAGS FOOTNOTES\n",
+ "0 AT F Y1 2011 38858 NaN NaN\n",
+ "1 AT F Y10 2011 39520 NaN NaN\n",
+ "2 AT F Y11 2011 40698 NaN NaN\n",
+ "3 AT F Y12 2011 41040 NaN NaN\n",
+ "4 AT F Y13 2011 42310 NaN NaN"
+ ]
+ },
+ "execution_count": 4,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "py = pd.read_csv(\"/home/jan/Downloads/singeleyears.csv\")\n",
+ "py.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
GEO
\n",
+ "
SEX
\n",
+ "
AGE
\n",
+ "
VALUE
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y1
\n",
+ "
38858
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y10
\n",
+ "
39520
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y11
\n",
+ "
40698
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y12
\n",
+ "
41040
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y13
\n",
+ "
42310
\n",
+ "
\n",
+ "
\n",
+ "
...
\n",
+ "
...
\n",
+ "
...
\n",
+ "
...
\n",
+ "
...
\n",
+ "
\n",
+ "
\n",
+ "
96
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y97
\n",
+ "
1682
\n",
+ "
\n",
+ "
\n",
+ "
97
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y98
\n",
+ "
1185
\n",
+ "
\n",
+ "
\n",
+ "
98
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y99
\n",
+ "
737
\n",
+ "
\n",
+ "
\n",
+ "
100
\n",
+ "
AT
\n",
+ "
M
\n",
+ "
Y1
\n",
+ "
40705
\n",
+ "
\n",
+ "
\n",
+ "
101
\n",
+ "
AT
\n",
+ "
M
\n",
+ "
Y10
\n",
+ "
41371
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
101 rows × 4 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " GEO SEX AGE VALUE\n",
+ "0 AT F Y1 38858\n",
+ "1 AT F Y10 39520\n",
+ "2 AT F Y11 40698\n",
+ "3 AT F Y12 41040\n",
+ "4 AT F Y13 42310\n",
+ ".. .. .. ... ...\n",
+ "96 AT F Y97 1682\n",
+ "97 AT F Y98 1185\n",
+ "98 AT F Y99 737\n",
+ "100 AT M Y1 40705\n",
+ "101 AT M Y10 41371\n",
+ "\n",
+ "[101 rows x 4 columns]"
+ ]
+ },
+ "execution_count": 5,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "import seaborn as sns\n",
+ "pyramid = py[[\"GEO\",\"SEX\",\"AGE\",\"VALUE\"]]\n",
+ "pyramid = pyramid[pyramid[\"AGE\"]!=\"Y_LT1\"]\n",
+ "pyramid.head(101)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
GEO
\n",
+ "
SEX
\n",
+ "
AGE
\n",
+ "
VALUE
\n",
+ "
Age
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y1
\n",
+ "
38858
\n",
+ "
1
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y10
\n",
+ "
39520
\n",
+ "
10
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
AT
\n",
+ "
F
\n",
+ "
Y11
\n",
+ "
40698
\n",
+ "
11
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " GEO SEX AGE VALUE Age\n",
+ "0 AT F Y1 38858 1\n",
+ "1 AT F Y10 39520 10\n",
+ "2 AT F Y11 40698 11"
+ ]
+ },
+ "execution_count": 6,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "pyramid[\"Age\"]= [int(i[1:]) for i in pyramid[\"AGE\"]]\n",
+ "pyramid.head(3)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
\n",
+ "
SEX
\n",
+ "
Age
\n",
+ "
VALUE
\n",
+ "
\n",
+ " \n",
+ " \n",
+ "
\n",
+ "
0
\n",
+ "
F
\n",
+ "
1
\n",
+ "
82351.93750
\n",
+ "
\n",
+ "
\n",
+ "
1
\n",
+ "
F
\n",
+ "
2
\n",
+ "
83187.84375
\n",
+ "
\n",
+ "
\n",
+ "
2
\n",
+ "
F
\n",
+ "
3
\n",
+ "
82936.34375
\n",
+ "
\n",
+ "
\n",
+ "
3
\n",
+ "
F
\n",
+ "
4
\n",
+ "
81560.71875
\n",
+ "
\n",
+ "
\n",
+ "
4
\n",
+ "
F
\n",
+ "
5
\n",
+ "
80817.31250
\n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " SEX Age VALUE\n",
+ "0 F 1 82351.93750\n",
+ "1 F 2 83187.84375\n",
+ "2 F 3 82936.34375\n",
+ "3 F 4 81560.71875\n",
+ "4 F 5 80817.31250"
+ ]
+ },
+ "execution_count": 7,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "tot = pyramid.groupby([\"SEX\", \"Age\"], as_index=False).agg({\"VALUE\":'mean'})\n",
+ "tot.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "However, in the dataset the ages are more or less uniformly distributed"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAWAAAAFgCAYAAACFYaNMAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOzdZ3RUV5rv/++uIJVyTkggkJBAJGPAZIMBt+12Tu1saCfAocPt6Tszfe+Lueu/7sztXtPJM+2xG0ewjQMYu7HBGJPB5CQQCElIQkIo51SSKuz/C0k0YxMEnFOn6mh/1vICFaXaT7eqfnpq1z57CykliqIoiu9ZjC5AURRlsFIBrCiKYhAVwIqiKAZRAawoimIQFcCKoigGsRldgBbuuOMOuWHDBqPLUBRFuRRxsRtN0QHX19cbXYKiKMpVM0UAK4qiBCIVwIqiKAZRAawoimIQFcCKoigGUQGsKIpiEBXAiqIoBlEBrCiKYhAVwIqiKAZRAawoimIQFcCKoigGUQGsKIpiEBXAiqIoBjHFbmjK5RUVFfHpqlV4vV4AYmNiWbp0CVar1eDKlEDU3NzMm8uW0d3dDUBwcDAvLF5MdHS0wZUFHt07YCHEO0KIWiFE3gW3/bsQ4pQQ4pgQ4nMhRPQF//YbIcRpIUSBEOJ2vesbDE6cOEFLSytB0WnIoChKS0uoq6szuiwlQJ0+fZqa2lqGOFykBLuoqa2luLjY6LICki+mIN4D7vjebd8C46SUE4BC4DcAQogxwGPA2L7v+S8hhGrTrlNlVRWhUQlkTr2L9InzAaiurja4KiVQVVVVYbUI7h8bzwPj4rFaBFVVVUaXFZB0D2Ap5Q6g8Xu3bZRSuvu+3Auk9f39PuBjKWW3lLIUOA1M1btGM5NSUlXZG8AAIRGxCGGhsrLS4MqUQFVZWUlCWBAWi8BiESSEBann0zXyhw/hngW+7vt7KnD2gn+r6LvtB4QQi4UQB4UQB9Xb6Uurr6/H6ewkLDYFAIvVRmh0IuXl5QZXpgQir9fL2fJyhkTaz9+WEmnnbHn5+c8YlIEzNICFEP8bcAMfXu33SimXSSmnSCmnJCQkaF+cSZSVlQEQEf/332PhcUMoKy/H4/EYVZYSoGpra+nq7iY1Kvj8bWlRwTi7uqitrTWwssBkWAALIX4K3A08KaWUfTefA4ZecLe0vtuUa1RaWorNHkxIZPz52yLiU3H19Kh5O+WqlZaWAr2h26//7/3/pgycIQEshLgD+EfgXill5wX/tBZ4TAgRLIQYAWQB+42o0QyklJwqKCAiMR0h/n4mYGRiOgAFBQVGlaYEqIKCAiIdNmJD/76CNTbURqTDpp5P18AXy9A+AvYAo4QQFUKI54C/ABHAt0KIo0KINwCklCeAT4GTwAbgZSmlep98jerq6mhpbiY6ecR/uz3IEUZYdKJ6wShXxePxUFRUREas47/9QhdCkBHr4HRRkZrWukq6X4ghpXz8Ije/fZn7/yvwr/pVNHicOHECgKjvBXDvbRmcKdxPR0cHYWFhvi5NCUAlJSV0d3eTGRfxg3/LjHNwtLKd0tJSRo4caUB1gckfVkEoOsnNzSU8NhlHWNQP/i02bRRer5e8vLyLfKei/FBubi52q4WR8SE/+LfM+BDsVgu5ubkGVBa4VACbVH19PRUVFcSmjb7ov4fFJOEIj+bo0aM+rkwJRB6Ph+PHjpEV78Bu/WFsBFktZMU7OJabq6YhroIKYJM6ePAgAHFDcy7670II4oaNoajoNI2NjRe9j6L0y8/Pp6Ozk3HJl56uGpsURkdnJ/n5+T6sLLCpADYhj8fD3r37iE7JJDgs8pL3SxwxAZDs368WmiiXt3v3biIcNkbG/XD6oV9WfAgRwTb27Nnjw8oCmwpgE8rLy6O9vY2kzImXvV9wWBTRKZns3bsPt9t92fsqg1d9fT1FhYXcOCQMi0Vc8n4Wi2DikDAKCwpoaGjwYYWBSwWwyUgp2bp1K47waKKTM654/+SsybS3t3Ho0CEfVKcEom3btmGxCG5MDb/ifSelhWOxCLZt26Z/YSagAthkCgsLqaioIGXUNITlyj/eqKThhMUks3nzFvXhifIDLS0tHDhwgBtSwogIvvKq1YhgGxNSwti/fz8tLS0+qDCwqQA2ESkl3377LUEhESQMHzeg7xFCkJozg8bGBrUiQvmBrVu34vV6mDH80p8lfN/M9Ei8Xo/qggdABbCJ5OXlcebMGVJzZmCxDvwam5jULMJikli/fj0ul0vHCpVAUl9fz57du7khJZyYEPuVv6FPTKidG1LC2f3dd9TX1+tYYeBTAWwSbrebr776itDIeBIzbriq7xVCMOyG+bS0tLBjxw6dKlQCzVdffYVFwC2ZV3/U0NzMKCwC1q1bp0Nl5qEC2CR27txJQ0MDQ2+4ZUBzv98XlTiMmCFZbN68mebmZh0qVAJJUVEReXl5zEyPIDz46g+liQi2MTM9guPHj1NUVKRDheagAtgE6uvr+eabb4gZMnJAKx8uJX3ifNweL5+tWcPfdwhVBpuenh5WrfqU2FA709MHPvf7fdPTI4kNtbN61Sp6eno0rNA8VAAHOCklq1evBmFlxKTb/tsuVVfLER5N2ribyT95kmPHjmlYpRJINm7cSGNjE3eOjr3oZccDZbdauHN0LA2NjWzcuFHDCs1DBXCA2717N6dPn2bo+LkEhf5wl6qrlZI1hbCYZD77bA2tra0aVKgEktLSUrZv387EIeEMj3Vc9+MNj3UwcUg427dvVxu2X4QK4ABWVVXF2rVfEp2cQeIVrnobKGGxMHLaXXR1d/PRRx+pc74Gkc7OTj784AOiHTZ+lB2j2eP+KDuGaIeNDz/4AKfTqdnjmoEK4ADV09PD+x98gNUeTObUO69r6uH7QiLjSZ+4gKKiIrZv367Z4yr+q38qq7W1lfvHxRFs0y4agm0W7h8XR2trK6tXr1afL1xABXAAklKyatUqamtqyJh6F3aH9huqJ2bcQGzaKNav/5rTp09r/viKf9m5cyfHjh3jlsyo/3bgplZSo4KZmxlFbm4uO3fu1PzxA5UK4AC0c+dOjhw5Qtq4m39w3JBWhBBk3vRjHBExrFjxvtqy0sSKior46ssvGZUQwozrWPVwJTPTIxmVEMJXX36pfqn3UQEcYIqKivjyy6+ISc0iNWeGrmNZ7cFkz3qQHpeb95Yvp7u7W9fxFN9raGjg/fdXEBtq596x8ZpOZX2fEIJ7x8YTG2pnxYrlasc0VAAHlKqqKt5bvpyQyFhGTr1L1xdLv5CIWDKn3UNlZSUffvih+lDORDo7O3n7rbfwunr4yYR4Ted9LyXYZuEnE+Lxunp4+6236OzsvPI3mZgK4ADR0tLCW2+9hRQ2Rs3+CVa79vN0lxIzJJPhE2/l5MmTfPHFF+pDFBNwu9289+67NDTU85MJ8cSFDXyvh+sVF2bnJxPiaWio57333hvUe1GrAA4ATqeTt95+m/aOTkbNfviyp1zoJTlrEinZN7F79261y1WA83q9fPTRR5SUlnLPmDjSY65/ve/VSo9xcM+YOEpKSvj4448H7Tsr3Y+lV65PT08P77zzDtVV1Yya/RBhMUmG1TLshnn0ONtYt24dISEhTJ8+3bBalGsjpWTNmjXk5uYyf2T0Zc9409u45DBau9xsOXoUh8PBQw895JNpNX+iAtiPud1uli9fQemZM2RNv4folGvf50ELQggyp96Nx9XD6tWf4XA4mDhRmwtAFN9Yv349e/fuZebwSGYOjzK6HGYOj6LL5WX33r2EhoZy5513Gl2ST6kpCD/l8Xj48MMPKSg4Rcbk2y95urGvWaxWsmbeT2RCGitXriQvL8/okpQB+vbbb9m6dSuT08KZdw1bTOpl3shoJqWGs2XLFjZt2mR0OT6lAtgP9Yfv8ePHSZ+44Kr399Wb1WYne/ZDhEYnsWLF+5w4ccLokpQr2LRpE9988w3jU8K4Y1SsX73VF0Lw49GxjE8OY8OGDWzevNnoknxGBbCf8Xg8rFy5kmPHjpF+wzxSsqcYXdJF2ezBjJ7zCKHRiSxfvoKTJ08aXZJyCZs3b2bDhg2MSw7jnjFxfhW+/YQQ3DM2jnHJYXz99dds2bLF6JJ8QgWwH+kP39zcXIZNuIWUUVONLumybEGOvhBOYPny5aoT9kObNm3i66+/ZmxyKPeOjcPih+HbzyIE946NY2xyKOvXrx8U0xEqgP2E2+1mxYoV58N3yOhpRpc0IL0h/CghUYksX76c3Nxco0tS6F3tsGHDhvOd731j4v06fPtZhOC+MfGM65uO2LBhg6nXnasA9gMul4v33nuPEydOMPzGWwMmfPvZghyMnvsoYbEpfPDBhxw+fNjokgY1KSXr1q1j06ZNTBwS3tv5Wvw/fPtZLL2d8A1Dwti0aRPr1q0zbQjrHsBCiHeEELVCiLwLbosVQnwrhCjq+zOm73YhhPgPIcRpIcQxIcQkveszWnd3N2+99RanTp1ixOTbSc6abHRJ18RmD2b0zY8QkZDGypUfsW/fPqNLGpS8Xi9r1qxh27ZtTE4L566c2IDofL/PIgR358QxOS2cbdu28fnnn5vyYg1fdMDvAXd877Z/BjZLKbOAzX1fA/wYyOr7bzHwug/qM0xnZyd//etfKSkpIXPa3SRptKm6Uaz2IEbNfpjo5BGsWrVKnbDsYx6Ph08++YQ9e/YwIz3S71Y7XC0hBHeMimV6eiS7d+/mk08+wePxGF2WpnQPYCnlDuD7exneByzv+/ty4P4Lbl8he+0FooUQKXrXaIS2tjZef/11KirOkTXjfhLSxxpdkiasNjvZsx4kNm0Ua9euZePGjaZ9++hP3G43H3zwAYcOHWJuRhTzR0YHdPj2E0KwYGQ0czOiOHToEB988IGp9o4wag44SUpZ1ff3aqD/+tpU4OwF96vou+0HhBCLhRAHhRAH6+rq9KtUB83Nzbz22mvU1NaRPfshYtOyjS5JUxarlazp95IwfBwbN27kyy+/VCGso/7L1Y8fP86PsmO4OcMc4dtPCMHNGdH8KDuG48eP884775jmlGXDP4STva/Mq351SimXSSmnSCmnJCQk6FCZPurq6vjPv/yF5pY2Rs95VLcN1Y0mLBYybrqT5JGT2bFjB6tWrTLlHJ7RnE4nby5bRlFRIXfnxDFtmO83avKVacMiuSsnlsLCQt58c5kpzpczai+IGiFEipSyqm+Kobbv9nPA0Avul9Z3mylUVVXx6quv4vF4CY1O4Gze4JgjDQqNZP/+/XR3d/PEE09gtVqNLskUOjo6+O1v/x9OZxfxYTaOVbVzrKrd6LJ0Fx9qo7T0DP/2b//KP//zbwgLM25DoetlVACvBRYBv+37828X3P6KEOJjYBrQcsFURUArLy/nzTffwmJ3MPbWRwmJjDe6JJ+qPLWP3Nxt9PT0sHDhQux23+0/a0YtLS0s++tfcXV389jEREbGhxhdkk+drney+lgd//XaayxZupTIyMDs/IXec3NCiI+AW4B4oAb4F+AL4FNgGFAGPCKlbBS9E1d/oXfVRCfwjJTy4JXGmDJlijx48Ip3M0xxcTFvv/MOFpsDR2Q8Hrc55q+uRpAjjMiEYZQe3sjIkSN55plnCA723abyZtLY2Mgbb7xOe2sLKRF2Buv0uhBQ1eYiIjKaJUuXEhsba3RJl3PRSXndA9gX/DmACwsLeeedd7GHRpIz51GCQiOMLslQdWfyKD6wnmHDhvHC888TEjK4OrfrVVdXxxuvv063s4PHJybocoJxIDnX0s1HR+sIDglj6Ysv4sefB6kA9rX8/Hzee285WKyERMYjLIZ/5ukXpNdLR2MVqampLF78AqGhoUaXFBBqamp4443X8XQ7SQ634/YG/mtXCzaLoLrdhTU4hBdffInExESjS7oYFcC+lJeXx4oV7xMSlUDOnEewBatO70JNlacp2v0FyclJLFmyJKA/SPGFqqoq/vrGG0h3N0/dmEBCeJDRJfmVuvYePjhSh7AFs2TpUlJS/O7yARXAvnL8+HGWL1+OxRZEaFSC6nwvwd3ThbO1nuSkZF58cakK4UuoqqrqnXbocpIYbscWQPs6+JLbK6ltdxHsCGHpiy/6WwirAPaFEydOsHz5ckJjkhk95xFsPjy9OBA1V5dS+N1nJCUl8eLSpWo64nuqq6t5/fX/wuLp4elJicSGqtUjl9PY6eL9Q7V4bUG8+OJLJCcnG11SPxXAesvPz+ftt9/BYrOrzvcquHu6cLbUERISwm9+8xsVwn1qa2v54x//gNfjITkiSHW+A+T2SqrberBYrfzqV//gL3PCKoD1dPr0ad588y0ckfHkzH0UW5Dvj/oOZE1VxRR+t4ahaUNZsmTxoF+i1tjYyF/+8z/x9DhZOCmRuDDV+V6N+g4X7x+uxRYcwsuv/MwflqipANbL2bNnef2NN7A5IggOj8Hd02VYLQHN66WtsZLsrCyeffZZbLbBeWh3a2srr732FzpaWxgSacftCfzXqBFsVkFlq4uwyCheeeVnREQYugRUBbAeamtr+c+//AUp7IyZ/yRBIYN7ne/1qi05RsnBr5kwYQJPPfUUlkE2jeN0Ovmv116jvq6WJyclkjbI1/ler4qWbj48XEt8YhIvvfSSkevOVQBrrbW1lf/4j/+ktbWVkOhELNbB2bFpzePqprO5lptvvpn77rvP6HJ8xu128+abb1JcXExiuB2HbXD98tFLl9tLbbuLzMxMXnjhBaPeWV00gNVP+Bp1d3fz7//+7zQ3N+OIjFfhqyGrPRh7SDg7d+7kT3/6k9Hl+ISUkt/97ncUFxcTF2pT4ashh81CXKiN4uJifve73/nV1qgqNa6B1+tl5cqVOJ3O3s3HU7OMLsl0pNdL4e4vqKw8zYkTJxg71hwb1l/Kpk2baGpqYk5GFHMyoo0ux5R2lDSzo6SJzZs3c+uttxpdDqCmIK7Jxo0b2bhxI6HRiVjVOl/9SElnSz1Wi+SXv/iFvywn0tyJEyd49913iXJYiXKonkhPLV1uWro8PPvss4wZM8aXQ6s5YC2cPHmSd955h/j0cWROvdNUJw/4o+6OVvI2vUd0VAS/+PnPcTjMtbyvrq6OP//5z8QGw8LJiditaupBTy6Pl+WHamnuhl/88pe+3LxHBfD1amho4He/+x1YrIRFJ/Xuh6foztPTRWdLHRMmTODpp582zS+9np4eXn31z9TX1ZGkLjH2GbdXUtPuIj4hgV/84pcEBflkX42L/nDV+50B8ng8fLhyJRarnXG3PYMjLMrokgaVc/l7OXZsOwcOHGDq1KlGl6OJL7/8kpqaWh6/MZHMOLVZky8VNzj56EgtX375JQ899JBhdagAHqA//elPVFdX44iIo3j/OqPLGZSs9mBWrV7NiBEj/Hnf1wE5ceIEe/bsISLYynelLXxX2mJ0SYNORLCVPXv2kJOT4+v54PNUAA9AeXk5NTW1xKePZeS0u40uZ9Dq7mzl+MZ3WbnyI372s1cC9iKNjo4OPv30E5IignjmpmQ19WAQt1fy7oFqPvnkY/7xH//JkN34VABfgcfjYdWqVQiLha72Zk5sXWl0SYOaIzyWs2fL2b17N7Nnzza6nGuydu1anJ1OkmKDWXm4xuhyBrWwIAt1jU7Wrl3L448/7vPxVQBfwY4dO6iqqiJ75v3Epo0yupxBT0rJqR2fsn79esaNG0d0dGCtmS0qKuLQoUPMGh7JvJExRpejAFtON7H70CGmTJlCVpZv1/SrAL6MlpYWNm7ciN0RTlXRIaqKDhldkgJ4PW56XC6+/PJLnn76aaPLGTCPx8Oazz4jyCoob+5mxcFqo0tSAAnYrYI1n33Gr//n/8RqtfpsbBXAl7FhwwY8Hi8TfvQkjvDA6rTM7mzeLnJzv2POnDmkp6cbXc6A7N27l7r6eh65IYHsBLXnsT8prOvk09w69u3bx8yZM302rgrgS6iqquLAgQMEhURQfGC90eUo3ye9WCxWvvrqK1566SW/Xxvc1dXF2rVrCbYJ9pa1sres1eiSlO8JtgrW/u1vTJo0yWcX/KgAvoRvvvkGmz2YCbc9ow7U9FPVp49QengjhYWFjBrl3/Pzu3btwuPxsPCm5EF/lLy/OtfSzbsHqvnuu+9YsGCBT8ZUAXwRNTU15OXlERIZR8Huz40uR7kEe3AoQSERbN68xa8DuKenh507dxAeZGVzUZPR5SiXER5kZceO7cyZMwe7Xf9TSFQAX8TWrVuxWG2MueUJ7A41V+fPqgr2U5K7lbKyMr+dC96/fz8dHZ08PTmJ9Bhz7WVhNmVNXbx/qIb9+/cza9Ys3cdTAfw97e3tHDlyBHtIJIV7vjC6HOVKpERYLOzatcsvA1hKya6dOwmxW9he3Gx0OcoAhNgt7Ny5k5kzZ+r+2YIK4O85ePAgHo+HsbMeIDQqsC93HSxKD3/LsWO53H///YZczXQ5xcXF1Dc0cM+YOG4YEm50OcoA5Fa28+XJekpKSsjMzNR1LBXAF5BSsm/ffmxBIZQe/tbocpQB8rpdeDweDh06xJw5c4wu57/Zt28fFgFHK9vJrWw3uhxlACRgEYK9e/eqAPalc+fOUVdXS8aUO0jMuMHocpSrkLdpOYcPH/GrAO7u7iYvL4+JQ8K5MyfO6HKUq7A+v4HjeXn09PToul2lCuALHDt2DCEETVXF1JWdMLoc5Sp4PR4qKqppbGwkNjbW6HIAKCgowOVy0dBpUVe9BRghwOVyUVBQwPjx43Ubx9AAFkL8D+B5erv+48AzQArwMRAHHAKellL2+KKe3NxjRCamM2rWg74YTtFQV3szR9f/lWPHjnHLLbcYXQ7Q+ws9NMjKkzcmYVE7ngUUr1fy513nyM3NNWcACyFSgZ8DY6SUTiHEp8BjwJ3An6SUHwsh3gCeA17Xu56GhgYaGuoJjbaqHc8ClNUeTEFBgV8EsNfrpbCgALsFPlA7ngUkuwUKCwrwer26bX1q9BSEDQgRQriAUKAKmA880ffvy4H/gw8CuLCwEICs6fcQEqnm6wLRmaObKSk+isvl8ski+ss5d+4cnU4n94+LZ1yyf63MUAbmeFU7fzvRQGVlJWlpabqMYVgASynPCSF+D5QDTmAjvVMOzVJKd9/dKoDUi32/EGIxsBhg2LBh111PUVERFquNkkPfXPdjKQaREo/HTWlpKdnZ2YaWUlRUBMCBs60crmgztBbl2nj6zsssLCw0XwALIWKA+4ARQDOwCrhjoN8vpVwGLIPeQzmvt54zZ84Qk5pN1vR7rvehFIO4e7o5+MWfKSsrMzyAz5w5Q1xYEM/clGJoHcr1+a89lZSVlen2+EZOQdwKlEop6wCEEGuAWUC0EMLW1wWnAef0LqS5uZnW1lZCLQ1q/jfAWW1BlJeXG1qDlJLy8jKsHo9a/RDgPB4v5WVlSCl1uSrOyAAuB6YLIULpnYJYABwEtgIP07sSYhHwN70LOXv2LAAjJt9GRNwQvYdTdFS8fz1l5SWG1tDc3Ex7ewd3jIplytAIQ2tRrs/Bs21sKGikpaVFl9NXjJwD3ieEWA0cBtzAEXqnFNYBHwsh/m/fbW/rXUtVVVXvnwX7Ke/u1Hs4RUceVzedHR20tbUREWFM+PU/n07VdnCypsOQGhRt9K8erKqqMlcAA0gp/wX4l+/dXAJM9WUd1dXVOMKjyZ55vy+HVXTQUnOG/O2fUF1dbVgAV1f3Tjs8PCERhz0wT25WejldHv6wvYLq6mpycnI0f3yjl6H5heqaGjxut5r/NQHp9QC9ezr7+oDFfjU1Ndgsgk9zaw0ZX9GWzSKoqdFnLfegD2ApJY0NjcRn3MDwib7ZBV/Rj5SSg5//icbGRsNqaGxoYEhkEAunJBtWg6Kd5QeraWho0OWxB30At7W14Xa7aK09qzpgsxAW3V4wA9HQ0IBwudUKCJNo7XIjG+p1eexBH8BNTb1HxAwdN5uYISMNrkbRwqmdqw3rgN1uN61tbdw8Ioq5meokbTPYXtzMztIWPB6P5kfWD/oAbm3tPZ22uugQlQX7Da5G0UJPZxs9uAwZu62t96q30w1Oypq6DKlB0ZbL03udV1tbm+YrIQb9R7T9Aexx+2TDNcUHLFYbnR0duN3uK99ZY/3PJ7va/cw0bNben2VLS4v2j635IwaY9vbeUwrGznsSodOOR4pv1RQfpfTQN3R0dBAVFeXTsfufTz/KjiElUh0/bwaVrd28s7/6/M9WS4M+gDs6OhAWKye3f2x0KYpGpNcLYEgAd3T0Xnjx9alGbKoLNgW3t3cKov9nqyUVwB0dOMKiGDvviSvfWQkILbXl5G/7SJcXzJX0j/nUpCSCbOodlRl0u738+7azKoD14HQ6cXV3qiVoJmKx9j6tu7p8/yGY0+kE4OOj6iIMs9Hj+aQCuKuLsJhkcuY+anQpika6Olo4uu4NQwK4q6uLkCCrugjDZP6wveL8L1ctDfoA7urqwtnmVB2wifTPARsVwG6PV12EYTJur1d1wHro7u4mKimdzKl3GV2KohGvx8P+z35PT4/vlxb29PQQE2JXHbDJ/HVvlS7Pp0EfwK4eF931FaoDNiGjAritW12GbDZtXW5iVABrz+XqIWHYONJvmGd0KYqGDn7+Z8MCODHcztOTVQdsJu8fqsblUgGsKSklbreb5qpi2hurjC5H0ZDX4zbkSji3y0Vzh+qAzaax00V0mPaXtw/qAPZ4eveOjR82ltQxMwyuRtHSkXWv43L5fj8It9tFWlQwD9+Q4POxFf2syq2lRYdf6IM6gPs7pIaz+TTXlBpcjaIld7fz/C9YX3K53VS2d6sO2GSanW6CwlUHrKn+F2jCiAmkZE8xuBpFS8e+eduQAPZ6PKTHOrhvbLzPx1b087e8eiq6vJo/rgpgoL7sBI3nCg2uRtFSd2ebIQHs9ng426Q6YLNp7fLg1eF8v0EdwN6+BftJmRNJzLjB4GoULeVtWmHIh3Bej5esOAd35sT5fGxFP+vzGyho0v4X+qAO4P4OqbYkl7qyEwZXo2ipq70JGe/7U5G9Xi9nGntUB2wybd0epA5xOagD+HwHnDWZhPSxBlejaOnElg+NmQP2ehmZFMJto2J9Prain95YJmgAACAASURBVI0FjeTWdGv+uIM6gKXs3eez5vRhaktyDa5G0ZKzrREZ6fuLIbxSUtzgVB2wyXT0eJBS+/2dB3UA93fAKdlTiBuaY3A1ipZObvv4/M/Xl6TXS3ZCGAuyYnw+tqKfzUVNHDjXqfnjDuoA7u+AqwoPUX36iMHVKFrqam3A6/D9UjApJYV1nZxr0f7tqmKcjh7P+V32tKQCGBgyaiqxadkGV6NoKX/Hp0h8PwcspWR0YijzRqoO2Ey2nm5iT7k6E05Tf++A91NVdNDgahQtdbU1EhHv+w/CpJQU1Dk526w6YDPp7PGczwstqQAGUkZNIzY1y+BqFC2d2rkKKX2/G5oERieGcktmtM/HVvSzrbiZXaUmO5ZeCBENvAWMo/e5+yxQAHwCDAfOAI9IKZv0GP98B1ywn6rCA3oMoRikq62J0Djfnojc/3w6VdtJeZPvT+NQ9NPp0ucDXaM74FeBDVLKh4UQQUAo8L+AzVLK3woh/hn4Z+Cf9Bj8/Bzw6GnEDBmpxxCKQU7tXA1S+zO8Lqf/+TQmKZQ5GaoDNpPtxc3sLG1BSokQ2i1HMyyAhRBRwBzgpwCy9/1ijxDiPuCWvrstB7ahUwD3qzy1j8qC/XoOofhYV1sTITGRhoydX9PJmUbVAZuJs68DNk0AAyOAOuBdIcQNwCHgF0CSlLJ/d/RqIEmvAs53wDnTiUnJ1GsYxQAFuz4D2eHTMS/sgG9WHbCp7Chppq7EXHPANmAS8DMp5T4hxKv0TjecJ6WUQoiLfvQohFgMLAYYNmzYdRVSmb+XylP7rusxFP/S1daEI8b3e0EAnKzppFR1wKbiNOEccAVQIaXsT77V9AZwjRAiRUpZJYRIAWov9s1SymXAMoApU6Zc0/qQ/o4lNWcG0SkZ1/IQip8q2LUG6dV+3eZAqA7YfHaWNLO9pEXzpWiGBbCUsloIcVYIMUpKWQAsAE72/bcI+G3fn3/Tu5Zzp/Zy7tRevYdRfKirvYngqHCfjtn/4jxZqzpgszFjBwzwM+DDvhUQJcAzgAX4VAjxHFAGPKJ3Eak504lOVh2wmRR89zl4Wg0Ze2xSGLNH+HYJnKKvXaUtbCtu1vxxDQ1gKeVR4GJnAS3wZR3n8vdyLl91wGbS1d5MUGSYIWOfqOmgpMG3S+AUfTndf18FoSXtz9hQFD+g/caBgTG2EliMnoLwC6k5M4hOHmF0GYqGCr/7HNzGTUHMUlMQprKrtIVt7SabgvAX5/L3cC5/j9FlKBrqbm8mxsApiGI1BWEqXW5zfgjnF1QHbD6qA1a09F1pC7WqA9ZW/4S66oDNp7u9mejIUEPGVh2w+agOWEeqAzafwt2fg0v7S0cHQnXA5qM6YB2pDth8VAesaEl1wDpSHbD5GNEB909pqQ7YfAzrgIUQScC/AUOklD8WQowBZkgp39a8GoOoDth8VAesaMnIDvg94F3gf/d9XUjviRWmCWDVAZuPoXPAyWHMGq46YDMxcg44Xkr5qRDiNwBSSrcQwvfHzepIdcDmY2gHXN1Bcb3qgM2kS6dLkQcSwB1CiDh6z2xDCDEdMKa10InqgM1HdcCKlr4700LtaWM64F8Ba4FMIcR3QALwsOaVGEh1wOajOmBFS4bNAUspDwsh5gKj6N1npEBK6dKlGoOoDth8VAesaMmwDlgI8eD3bsoWQrQAx6WUFz2tItCoDth8VAesaMnIVRDPATOArX1f30LvAZojhBD/n5TyfV0q8yHVAZuP6oAVLRk5B2wDcqSUNXB+XfAKYBqwAwj4AFYdsPmoDljRkpEd8ND+8O1T23dboxDCFHPBqgM2H9UBK1oysgPeJoT4CljV9/VDfbeFAdpXZADVAZuP6oAVLRnZAb8MPAjM7vv6IJAkpewA5ulSlY+pDth8VAesaKn/SjghtD1waiDL0KQQogSYDvwEKAU+07QKg6kO2HxUB6xoyecdsBAiG3i87796evd/EFJKU3S9F1IdsPmo/YAVLRmxF8QpYCdwt5TyNIAQ4n9oXoEfUB2w+RjRAfe/PVW7oZmPEXPADwKPAVuFEBuAjzHpiduqAzYf1QErWvJ5Byyl/AL4om+1w33AL4FEIcTrwOdSyo2aV2MQ1QGbj9oPWNGSkXtBdAArgZVCiBh6P4j7JyDgA7j/LaPqgM2n8LvPEepUZEUjfnEmnJSyCVjW959pqA7YfLrbm4mJDDNkbNUBm486E05HqgM2n8LvPgfVASsa2eUPHbBZqQ7YfFQHrGjJqTpg/agO2HxUB6xoaVdpC9vM2AELIaz0Xt58Tkp5txBiBL1L3uLo3fbyaSllj541qA7YfLram4k1qAPOUx2w6Zi5A/4FkA9E9n39O+BPUsqPhRBv0Lsf8et6FpCaM53o5Aw9h1B8rOC7NQhPmyFjj00KY7bqgE1lZ0kz29tbfL8XhJ6EEGnAXcC/Ar8Svf/r5gNP9N1lOfB/0DmAz53cy7n8vXoOofhYV1sTwdERPh3z/JVw1R2UqA7YVJwuc3bAfwb+Eeh/pcQBzVJKd9/XFUCqXoP3v2CG5EwjJiVTr2EUAxTsWoOQ7YaMPSYplJszog0ZW9HHzpJmtpeYqAMWQtwN1EopDwkhbrmG718MLAYYNmzYddVSmb+XylP7rusxFP/S1daEI8a3HXC/kzWdlDZ2GTK2og+9OmCLLo86MLOAe4UQZ+j90G0+8CoQLYTo/8WQBpy72DdLKZdJKadIKackJCRcUwFa/zZT/I1vf77q+aRcLcM6YCnlb4DfAPR1wL+WUj4phFgFPExvKC8C/qZ3LUNGTyNmyEi9h1F86NTO1QhhzDxsTlIoc9QUhKlsL26mrtREUxCX8U/Ax0KI/wscAd7Wa6D+/zMrT+2jsmC/XsMoBuhqayI0zrcrEfqfTydrOjmjpiBMpbNvCsKUASyl3AZs6/t7CTDVF+P2/5+ZMmoqsalZvhhS8ZFTO1ch0HX5+A/0P59yEkOZm6k6YDPZVtzMrlLttzf1iwA2Sv8LpqpgP1WFBwyuRtFSV1sj4fGxPh9XAPm1nZQ1qQ7YTDpdXl3m+FUAAynZNxGblm1wNYqW8nd8irB4fD6uEIJRCSHMGxnj87EV/Ww93cSecu2XNaoABioL9lNVdNDgahQtdbU2EJUU7/NxhRCcqu3kbHO3z8dW9NPR49FlTY0KYCAlewpxQ0cbXI2ipZPbPsZi8f2ysN4OOJT5WaoDNpPNRU0cONep+eOqAAaqCg9QffqwwdUoWnK2NhAXluTzcYUQFNR1UtGiOmAz6ejxqDlgrVksvdehJI2cREL6WIOrUbR0YsuH53++viQsgsw4B7eN8v0HgIp+NhY0kluj/S9VFcBATdEhaktyDa5G0ZKztR5LzFCfj2u1WDhd76S6rdrnYyv6aev2YLFoH5cqgIHEjIkkZkwwuBpFS3mbVhjSAVssFkbE2vnx6Difj63o5+tTDZxq1H4/CBXAQE3xEerK8gyuRtGSs60RS5LvL4awWCwU13ex4qDqgM2ktcuDxe7Q/HEHdQDbbL3/8xOGjyM5a7LB1ShaOvbN2+d/vr5ktdoYFgH3jvX9EjhFP387UU+F06r54w7qAO7vgGtLj9FQUWBwNYqWujtasVrTfD6u1WrhTJPqgM2m2enGHq793iKDOoD7O6S4oaNJzZlhcDWKlo6ue8OQDthms5EQGczDE65ti1TFP63OraNJqA/hNNX/Aq0vO0lzdanB1Sha6ulqNyaA7XYq6rpVB2wyjZ1uohO0v7hmUAewEAKr1UZ0SibpN9xidDmKhg5+8apBHbCd+HA7T03y/UUgin4+OFyD1OH5NKgDGMBut9F4rpD2xkqjS1E05O7pwm63+3zcoKAgKtp6VAdsMnUdLtLigjR/XBXAQUE44tLIvOlOo0tRNOL1eti/+vcEBWn/grmSoKAgIh02Fk5J9vnYin6W7avS5fk06AM4KCiIluoznNi60uhSFI1Ib++CeaMCuLHTpTpgk2nqdJGqAlh7IQ4HHlsko+f8xOhSFI10d7Zy5KvXcTi0Xzh/JcHBwQTZrKoDNpk/7jiny/Np0Aeww+Gguvyc6oBNxGLtfVobEcAOh4PObrfqgE3G2eNWAayHkJAQghxhjJ33hNGlKBppraugpbrUkAAOCQlBAk/cmITNqo6pNwOXx8vvtp5VAayHsLAwutqbVAdsJlICvT9bX+sf8/1D1VgN2BBe0Z7Hq9/zSQVwWBhSSsbc8rguGy4rvldbkktbfYWhAXxnThxJEb7/EFDRXnVbD2/tq1IBrIfeAPZyYsuHCAO2L1S05+7pPZHYyAD+pqDR52Mr+goPD9f8MQd9AEdGRgKQMeV2QqPU9ftmUHr4W2R3myHL0PqfTzcMCeeGIdq/YBXfy61sp7y5+/zPVkuDPoCjonp3OCo9/K3BlSha6WpvJiZS+52rBqL/Rbq3vJXcSu2PMVd8z+nuXVeuAlgH0dG9m3bHDxtDUuZEg6tRtHD82/eIjjYmgIOCgggLDSEtyspdOepUDDNYl99Ap9emy6Xtgz6Ao6KisFisVBUepL78pNHlKBrobKkjPifTsPFj4+IprDlHQ4fLsBoU7dR3uohPStXlsQd9AFssFmJiYpAhcWTPvN/ocpTr5O7p4uAXrxIba9ypxHFxcbQ3VKur4UziL99VEhunz7uZQR/AAImJCRSeLlFrgU3A4+o9OjwxMdGwGhISEjh61MXyg9WohY2BTQLNTpduzycVwEBKSgqnThWQM+dRLFbtz31SfKem+Cilh74hOdm47jMlJQWA27JjSIkMNqwO5fpVtXbz9v7q8z9TrRkWwEKIocAKIIneXzTLpJSvCiFigU+A4cAZ4BEpZZOetSQnJyOll4LvPsPrces5lKKzHmc7QUFBxMRof3rBQPWH/9enGrGpq+ECmrvvKrikJH022DfyygM38A9SyjHAdOBlIcQY4J+BzVLKLGBz39e6SkvrPbzR3d2l91CKzjw9TtLShhp6VWN8fDzBwUE4XV7DalC04XR5CQ4OIj5en1OuDeuApZRVQFXf39uEEPlAKnAfcEvf3ZYD24B/0rOW+Ph4HCEhhMUkkjHlDj2HUnTk9bg58PmfSE8fZmgdFouFoUOH0V5brj6IC3Bv7asmPnnY+RPUteYXc8BCiOHAjcA+IKkvnAGq6Z2iuNj3LAYWAwwbdn0vOIvFQvqwYZwuzsfZpi4hDVRCWJBeL+np6UaXQnp6OptPn2b5gWrUFiOBSUqobutm3DT9nk+GB7AQIhz4DPillLL1wreOUkophJAX+z4p5TJgGcCUKVMuep+rMXLkSAoKCsiafg9BIRHX+3CKAc7m7aKtrpyMjAyjS2HkyJFs3ryZmcMjyUoINboc5RoU1nVyNreOkSNH6jaGoQEshLDTG74fSinX9N1cI4RIkVJWCSFSgFpf1JKdnc26deso/O5zhNXw30vKNXC21JOWlkZoqPGBN2LECOw2G98WNrGnrNXocpRr0N7twW63M3z4cN3GMHIVhADeBvKllH+84J/WAouA3/b9+Tdf1JOSkkJ4eDhBoZHqgowA5Orq5PCXf2HUqFFGlwKAzWYjc2QmNWUlPD05SW11GmCklLy2u4rMzAxsOhxH38/IVm8W8DRwXAhxtO+2/0Vv8H4qhHgOKAMe8UUxFouF8ePHs//AQQp3f4Gru9MXwyoa8bpdSCkZP3680aWcN378BE6dKuCjI7XnlzMpgcFqETQ7Xfxo/ARdxzFyFcQuuOSFQgt8WUu/CRMmsGfPHuKG5RCX5h+dlDIw+ds/IS4ujiFDhhhdynnjxo3js9WrSY4MYv5I49YlK1dvy+kmypq6GTdunK7jqMnOC2RkZBAeHs6Zw5uoLjpkdDnKAEmPh/bGShYsWOBXb/XDwsIYmZXF/tNFVDR3G12OchUqW3vIys7WfVN/FcAXsFqtTJ06lS1btzL+1oUEharVEIGg4sQu2hsrmTp1qtGl/MC0adMoLCxkxvBIsuKN/3BQubKiuk4+ya1j2rRpuo+lAvh7pk6dypYtW8jf8Sm24BCjy1GuREJHUxXZ2dnE6bRj1fUYO3Ys4WFhrDvZSGyoWg0RCBo73YSHhzF27Fjdx1IB/D3x8fGMGj2aktJyxt+6EItN+02YFe3Ul53k9L6zzJw50+hSLspmszF9xgw2b9rEU5OTiA9Tzyd/Vt/h4o09ldw6ZwZWH2zMpQL4IubPm0fBqdfJ2/ohVps62dZf2R1hdLU2kJiYxJgxY4wu55Jmz57N9m3b+PhIDZEO9ZLzZy1dbuw2G7Nnz/bJeOrZcBEZGRkMS0+npr6JcfOfwqIuzPBLjeeKKPxuDfc+9phu1+prITw8nKnTprFn926emhxPdIh6PvmjJqeL13dXMXPWLF1OQL4Y9Uy4CCEEd9x+O8uWLSN3w9vqwzh/JKGzuYa4uHhuvPFGo6u5onnz5rF7927e2V+lpiH8VH2HCwnccsstPhtTBfAlZGdnk52dTcmZckbNWoQtyGF0ScoFaoqPUlp/lrvvvssnc3XXKzo6mnnz5rFlyxZ+pDZq9zuVrd28s7+aBQsWnD+o1xdUAF/G3XffzR//+CfyNq3AHuKbtyTKlUmvl86matLT03VfKK+lefPmsW/vXlYeqSVBdcF+pa7DRVhoKPPmzfPpuCqAL2PIkCHMmDGdPXv2MHL6PYTH6nMsiXJ1Sg5uoKOxkgceeMCvLry4kpCQEO66+24+/fRTxqWEMSlVTW35g8MVbaw/1cgjD9yNw+Hbd7oqgK/gzjvvJC8vj/ztnxAalXjpi6cVnxDCQmttGXPmzDl/kkkguemmmzh48CBbTpdxus5Jl1udmmEkh81CeUsPmRkZ3HTTTT4fXwXwFYSEhPDggw+yfPlyopLSSRs7y+iSBi2Pq4e8Te8RHR3D7bffbnQ510QIwcMPP8wf//AHALVTmoGklHyaW4fbCw89/LAhPwcVwAMwfvx4YmJiqDixi8ZzhVjt6gMUI3S1NeLq6uCnL75IcHDg/gwSExO58667WLt2La/vriQ82P8/RDSj9m4PjU439913n27Hzl+JCuAB+tWvfsUf/vhHulw9jJn3BDYVwj7VWFFA4e4vmD9/PpmZmUaXc91mz57NqVP5lBQX88jERLU0zcfqO1y8tb+a7OxsZs0y7l2tkDLw9ymdMmWKPHjwoO7jlJaW8tprr2ELCiEkSp9TUpUf8nrcdDbVkJo6hFdeeUXXDbJ9qbW1lT/8/ve4urtICrers+N8REqoaXdhD3bwD7/+NZGRkb4Y9qI/XXM8k31kxIgR3Hvvvaxdu5bo5BGk5swwuiTT87h6OLH5fRwhDhYuXGia8AWIjIzkqaefZtmyZYQFW3lofLyaD9aZlJLPjtXj8vbw7MKFvgrfSzLPs9lHbr75ZsrLyzl6dAfNVSWotkVf3e3NuLraeeGFF4iNjTW6HM1lZWVx11138dVXX/HmviocNv+9pNoMutxeattd3H333boetjlQKoCvkhCCn/zkJ9TU1FBbX8uYeU8SFm3MBL7ZlR/bTlvdWe6++26ys7ONLkc3c+fOpaKigqNHj/LQ+HhykvTdBHywOlnTwZrj9UycOJG5c+caXQ6gAviaBAcH89xzz/Hb3/6WvE0rCItJQljUJ9lacjnb6WpvIjY21m9eLHoRQvDoo49SWFjIZ8frSTrTQrBVdcJa6nZ7qWl3ERoayqOPPuo3Uz3qQ7jrcO7cOV577TXsodHk3PIEtiC1MkILzVUlFOxaTVZWFs8991xA7PWghY6ODv7j1VdxtrewaHIScWplhCYaOlwsP1RDSEQUP//5L3Q/ZugSLpr4KoCv06lTp3jrrbew2oMJjUpQc8LXyePqprOljiEpKbz00ks+vzTUaHV1dfz+978H6SE5PAirRT2frofHK6lu7wFh5de//jUJCQlGlaICWC9Hjhzhww9XEp2SQfasB7Co6Yhr0tFUQ/62j4iOiuDll18mImJw7pVQUVHB66+/TrhNsmhyIqFB6vl0LTp6PKw4VEu7W/DSSy+RmppqZDkqgPW0e/du1qxZQ1BIJMFhUWrPiKvkdbvobKkjIiKcn73yCjExg/sY9+LiYt58801seIkPs2FR76yuildK6jvcuLGwePFiMjIyjC5JrQPW08yZM+nu7mbdunVEJg4l86Y7EX58SoM/cbY2kL/tI8JCQ1i6ZMmgD1+AzMxMFi1axHvvvYdXCh67MVEtURugLpeXD4/U4pKCn/50kT+E7yWpANbQvHnzOHz4MFVlJ2iuLiUkIk51wlfg9bjpbK5BACPSswy7Jt8f5eTkMGzYMEpLS/mPnRUkhQepjxiuoPcqtx56PJIRI0aQk5NjdEmXpaYgdLBx40Y2btyILThUhfBleN0unK31OIKDefHFpaSkqP2WLyYvL48VK1YQbIW4UDvqc7mL80po6HTR7YGFCxf622b9agrCV2677TagN4iDktIZOfVuNR3xPZ0t9Zza/jEORzAvLlXheznjxo1j4cKFvL9iBR4Jj05MIMSuPpi7kNPlYeWROnr8M3wvSXXAOtqyZQvr168nKCSi74M51boAWKw2OptqcARZWbp0KUlJSUaXFBBOnjzJiuXLiQu1EuWw0uVSm7kDOOwWWro8NHR6WPTTn/rrtIPqgH1t/vz52Gw21q5dS2h0Itkz7sNiG9yL69sbKjm1cxWhIb2dr4HrMgPOmDFjeObZZ3n33XfxeOHJSQlEBA/ul3Brl5uVR+po7vby7HPPBdwl66oD9oG9e/eyevVnRCYOxWZ34OpxGl2SzwU5wkjKvJGCXZ8RGRnO0iVLiIuLM7qsgFRcXMzbb79NmFUSH2aje5AeaxRkE9R3eHB6BM8+95y/7xMdWOuAhRB3AK8CVuAtKeVvL3Vffw9ggMOHD/PRRx8TFpvM6Jt/MuiOuW+uKqFw9+fExcWydMkSoqKijC4poJWXl/PmsmXYcPPkjYNvQ/f6DhcfHqnFjY0XFi9m2LBhRpd0JYETwEIIK1AI/AioAA4Aj0spT17s/oEQwADHjx9nxYoVCIuN0OiEQbOBj7u7E2drA0OGDGHx4sWEh4cbXZIpVFZW8h+vvorX6yExPIgg6+D4jKHHI6lt78FisfLzX/yCIUOGGF3SQARUAM8A/o+U8va+r38DIKX8fxe7f6AEMEBhYSHvvvsuNkcEo+c8SnCYsRtC66229BglBzcwPD2d5557jpCQEKNLMpW6ujr++sbrODs6eGxiPEOjzf3O6mxzFx8frSckLJwlgfUZwkUD2F/XRqUCZy/4uqLvtvOEEIuFEAeFEAfr6up8Wtz1yM7OZvHixXh7Oji59UOcbY1Gl6SbqsKDlBz4muysLF544QUVvjpISEjg5Vd+RkRUNCuP1FHSYN7PF0oanKw8UkdEVDQvv/JKIIXvJflrAF+RlHKZlHKKlHJKoP0gRowYwUsvvYQVD/lbV9LZHDi/QAZCSsm5k7spO7qZcePG8eyzzwb0Kcb+LiYmhpdfeYW4hEQ+ya2joLbT6JI0V1DbySe5dcQnJPKyifYK8dcAPgcMveDrtL7bTCM1NZWXX36JYLuVk9tW0t5QaXRJmpBSUn5sO2fzdjJp0iSefvppU53j5q8iIiJ46aWXGJKayurjdeRVdxhdkmaOV7Wz+ngdqalpvPjSS6baJc9fA/gAkCWEGCGECAIeA9YaXJPmkpKSeOWVl4kICyV/+ye01p298jf5MSklZ45soqpgHzNmzOCxxx4bNJup+4PQ0FCWLFlKxogM/pZXz5FzbUaXdN0On2tj7YkGMkZksHjJEkJDQ40uSVN+GcBSSjfwCvANkA98KqU8YWxV+oiLi+OVV14mJiaKgp2raKkpM7qkayK9XkoPbqDm9GHmzp3Lgw8+iEVdfu1zDoeD5194gexR2azLb+Tg2cAN4QNnW1mf30j2qFE8/8ILptyc3y9XQVytQFoFcSltbW288cZfqauvJ3vmA0Sn+O8Wet8nvV6KD6ynvuwEt956K7fffrvfnLk1WLndblasWMHJkye5NSuG6emBtdpmb1krm4qaGDt2rFmmsQJqFcSg0zuH9yJJSYkUfreGpqpio0saEOn1cnr/V9SXneCOO+7gjjvuUOHrB2w2G4sWLWLChAlsKmpi95kWo0sasN1nWthU1MSECRNYuHChGcL3klQA+5GwsLC+ncGSKdr9Oc1VJUaXdFm94buOhvJ87rzzTm699VajS1IuYLVaefLJJ5k4cSJbTjezt6zV6JKuaE9ZC1tONzNx4kSefPJJ03+GoALYz/R+kLKEpKQkCnevobm61OiSLqp/2qGh/CQ//vGPmT9/vtElKRdhtVp5/PHHz3fC+/w4hPeWtbK5qJkbbriBxx9/3PThCyqA/VJoaChLlywhKbF3OsLfVkdIKSk99M35aYcFCxYYXZJyGf2d8IQJE/i2qIlDFf73wdyhirbz0w5PPPHEoAhfUAHst8LCwliyZAlxsbEU7FpNe2O10SUBfet8c7dSW3qMBQsWqGmHANEfwjmjR7PhVKNfrRM+XtXOhlON5IwePSimHS6kAtiPhYeHs2TJYiLCwijY+SnO1nqjS6Iyfw9VhQeYOXMmd9xxh9HlKFfBarWycNEiRmRk8LcT9RTVGX/FXGFdJ2tPNpCRkcHCRYsGVfiCCmC/Fx0dzdKlSwi2Wzm1cxU9znbDaqktPX7+Crf7779frXYIQHa7nWeffZbU1FQ+y2vgXEu3YbWca+lmTV4DqampPPPss9jtg2tLTVABHBDi4+N5/vnn8fY4Kdi1Go+rx+c1tNScofTgBrKysnjkkUfURRYBzOFw8NxzzxMZGcUnuXU0dbp8XkNjp4tPcuuIjIziueeeN+VFFgOhXkUBIi0tjaeffprO5lqK9q5Fen13CkJnSx2Fuz8nKSnR9OsyB4uIiAief+EFpMXOR7l1OF0en43tdHn4OLcOrEE8u6h/tQAACxtJREFU/8ILptrb4WqpAA4gY8aM4f7776e5qpizeTt9Mqa720nhd2sIdQTz/PPPqy0lTSQxMZFnnn2WFqeHz/Pq8frgqlivlHyeV0+L08NPn3mGxMRE3cf0ZyqAA8ysWbOYNm0alaf20nD2lK5jSa+Xon1f0tPZxqJFi4iOjtZ1PMX3MjIyuP+BByhp6GJbcbPu420rbqakoYsHHnyQjIzAudxeLyqAA9ADDzzAsPR0Sg6sp7NFv5URFSd20VJdykMPPcjw4cN1G0cx1owZM5g2bRq7z7RySse9hE/VdrL7TCvTp09n+vTpuo0TSFQAByCbzcZPFy0iODiI03vX4vW4NR+jpaaMc/l7mDp1KtOmTdP88RX/8sADDzA0LY2v8htp6dLh+dTl5qv8RoampXH//fdr/viBSgVwgIqMjOTxxx6js6WO8txtmj62q7uT4v1fkZCQyH333afpYyv+yWaz8eRTT+EVVr7QeD7Y65V8kVePFFaefOop9SHuBVQAB7CcnBxuvvlmqk8forlau417Sg99g6fHyVNPPamOEhpE4uPjeeihhzjb3M2eM9rtGbGnrJWzzd08+NBDxMfHa/a4ZqACOMDdeeedJCQk9oamBuuDGysKaKwo5Pbbbyc1NfXK36CYyqRJkxg/fjw7Slto6Lj+9cENHS52lLYwYcIEJk+erEGF5qICOMDZ7XYeeeQndHe0cvbE9S1Nc/d0cebIJoYMGcLcuXM1qlAJJEIIHnjgAYKCgll3qpHrObBBSsm6/EaCgoLVvO8lqAA2gREjRjBjxgyqiw7R0VRzzY9zNm8nrq4OHnnkkUF3Tb7yd5GRkdxz772UN3VxrOraN+05VtVBeXMX99x7L5GRgXUih6+oADaJH//4x4Q4Qig/tvWauhZnawO1xUeYPn06aWlpOlSoBJKbbrqJoUPT2FbcQo/n6q+67PF42VrcwrChQ7npppt0qNAcVACbRGhoKLfd9iNaasqu6SSN8mPbsAcFcdttt+lQnRJohBDce+99tHW7r+kkjb1lrbR3u7n3vvvUpk2XoQLYRGbOnElcXDxn87ZfVRfc1nCOpsrTLJg/f1Bfl6/8dyNGjGD8+PHsLW+7qr0inC4Pe8vbGD9+vLqA5wpUAJuI1Wrl1lsX0NlcR/NVHOp57uQeQkJCmT17to7VKYHotttuo8ft5cBVHG+/v7yNHrdXvZsaABXAJjNp0iSiY2I4l79nQF1wR3MtzVXFzJ07R635VX4gJSWFsWPHsv9sO93uK88Fd7u9HKhoZ+zYsaSkpPigwsCmAthkrFYr8265hfaGStobq654/+rCg9iDgpg1a5YPqlMC0fz58+lyeTg+gBURx6s66HJ51DmBA6QC2IQmT55MUFAQtcVHLns/d08XDWfzmTxpktpmUrmk9PR00lJTOfz/t3d/v22ddRzH39/YSdpoSCNbaeOY/ki0uAvR6tFQlArE+CWKmDQJ7WITFyCEJiS4BMRUtH8AxMUYXOwCJMSPDQ1NmhBItBJDQrCiVNvadbRbu6VrsmW1mzmJm9Su4y8Xdhu3abrGaf30HH9eUiT3nOPoo8b55PHjc54zVbzuuyp35/BUkXS6n61bt7YwYXSpgGNow4YN7N69m3NnjlMpX1j1uNzEa1SXKoyNjbUwnUTR2N69nC2WmbzOLYwmZ0vkimXGxva2MFm0qYBjas+ePVSXKsxMnlj1mHPvHKO/v1+XHMuHymazdCaT172b8tH3ztPZ2Uk2m21hsmhTAcdUOp3mo729qy7afqFYoDgzrV8WuSHd3d3cOzzM/84uUq2unIaoVp3juUWGh4f1Ye4aqIBjysy4P5tl7uxpLpZWLrJ9qZh37drV6mgSUdlsloXyEqcLK6e1Jj64wEJ5SX/Q10gFHGMjIyO4O7PvT6zYV5h+i1QqRW9vb+uDSSRlMhkSiQQn84sr9p06t0gykSCTyQRIFl1BCtjMfmpmx83siJk9b2Z3Nux73MxOmtkJM/tKiHxxkU6n2bixh8L021dsr1wsUcxPsXPnzkDJJIq6u7vZsWMHb82s/CDu1EyJHQMDdHV1BUgWXaFGwAeAEXe/D3gDeBzAzIaBR4BPAPuAX5mZluVqUkdHB0ND9zD3/sQVpw/N587gXmVoaChgOomiTCZDrlhmvrR826L5UoV8sazRbxOCFLC7/93dL/0EXwIuLb/1EPCMu5fc/W3gJLAnRMa4GBgYoLxYpLSwvKDKfH6Sjo4E27ZtC5hMomhwcBCAycLyKPhM/bHucrx2t8Mc8LeBv9Uf9wNnGvZN1retYGaPmdm4mY3ncrlbHDG6Li2GUsxPXd42f+5d+vtTdHZ2BkolUZVKpUgmk1ecDzw1WyKZTJJKpQImi6ZbVsBmdtDMXrvG10MNx+wHKsDv1/r93f1pdx9199FNmzbdzOixsmXLFjo7OynOvAuAV6ssfDCt0a80JZlMkk6nmZpbvv3V1GyZdDqtm2024Zb9j7n7l66338y+BTwIfNGXJyingI83HJaub5MmJRIJtvT1MVuovUu4cL7AUuWiLr6QpqVSKQ5PvnP5c4Wz5y/yqRG9npoR5E+Wme0DfgR8zt0bT1J9AfiDmf0cSAH3AP8NEDFWUn19vPfyq0y/eZiFuTyAVqqSpvX19VGqVPl3/c7J5UpVr6cmhXrP8BTQDRyor5b/krt/192PmdmfgNepTU18z91vfCVouabBwUEOHTrExMsHgdrdMzZv3hw4lUTV9u3b6TDjH6cKAHSYaUqrSbaeu57eLkZHR318fDx0jNvawsLC5beMXV1d+gBO1qVUKlGp1E5kSiaTuvz4w13zvkyaNW8TPT09oSNIjHR3d6t0b4Lb4TQ0EZG2pAIWEQlEBSwiEogKWEQkEBWwiEggKmARkUBUwCIigaiARUQCUQGLiASiAhYRCUQFLCISSCwW4zGzHHA6dI4IuBvIhw4hsaLX1I3Ju/u+qzfGooDlxpjZuLuPhs4h8aHX1PpoCkJEJBAVsIhIICrg9vJ06AASO3pNrYPmgEVEAtEIWEQkEBWwiEggKuA2YGZLZvZKw9f20JkkmszMzex3Df9OmlnOzP4SMldU6aac7WHR3bOhQ0gsnAdGzGyjuy8CXwamAmeKLI2ARWSt/gp8rf74UeCPAbNEmgq4PWxsmH54PnQYibxngEfMbANwH3AocJ7I0hREe9AUhNw07n6k/jnCo9RGw9IkFbCINOMF4GfAA8BdYaNElwpYRJrxa6Dg7kfN7IHQYaJKBSwia+buk8CToXNEnS5FFhEJRGdBiIgEogIWEQlEBSwiEogKWEQkEBWwiEggKmBpO2a238yOmdmR+uXZnzazF83sRMMl28/Vj33SzJ646rm/DJde4kTnAUtbMbMx4EHgk+5eMrO7ga767m+4+/hVT/kJ8ErDEozfAe5vTVqJOxWwtJs+IO/uJQB3zwOY2TUPdvc5M9sPPFXf9IS7F1oRVOJPF2JIWzGzO4B/AT3AQeBZd/+nmb1IrZwX64cecPcfNjzvP8CSu3+mxZElxjQClrbi7kUz2w18Fvg88KyZ/bi++1pTEJhZmlo5V83sDncvti6xxJlGwNLWzOxh4JvAR4AfrFLAf6a2+te9QKJxZCyyHhoBS1sxswxQdfc365uywGlgZJXjvwp8DPgttWmLI2b2G3d/vRV5Jd40Apa2Up9++AVwJ1ABTgKPAc9x5RxwntrZEq8CD7v70frzvw58392/0OLoEkMqYBGRQHQhhohIICpgEZFAVMAiIoGogEVEAlEBi4gEogIWEQlEBSwiEsj/AavV+E49VHG3AAAAAElFTkSuQmCC\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "sns.catplot(x=\"SEX\", y=\"Age\", kind=\"violin\", inner=\"stick\", split=True, palette=\"pastel\", data=tot);"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 11,
+ "metadata": {},
+ "output_type": "execute_result"
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYAAAAEGCAYAAABsLkJ6AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nO3deXhc9X3v8fd3ZrTvqxdJlmRbtvCGwcLYLEnZik0SnCbmBtI29IaUpiVNmq7w9Jb2Jg/PU9repmmztBRoyHJDwJDGlxhIwCRAANsym3dblmRLsmTt+zqa7/1jjowiy9LYWs4s39fz6PHMmXNG3znWnM/M7/c7vyOqijHGmNjjcbsAY4wx7rAAMMaYGGUBYIwxMcoCwBhjYpQFgDHGxCif2wVcjNzcXC0pKXG7DGOMiRj79+9vVdW8yR6LqAAoKSmhsrLS7TKMMSZiiMipCz1mTUDGGBOjLACMMSZGWQAYY0yMsgAwxpgYZQFgjDExygLAGGNilAWAMcbEKAsAY4yJURYAxhgToyLqTGAztf+757Srv//TVy9x9fe7KZb3fSy/9khn3wCMMSZGWQAYY0yMsgAwxpgYZQFgjDExygLAGGNilAWAMcbEqJCGgYrIFuDrgBd4VFX/fsLjCcB3gQ1AG/ApVa0VkRxgB3AV8B1V/cK4bTYA3wGSgF3Al1RVZ/yKTEQb9gdo6BzgbPcgzT1DtPYM0TUwQvfgCN0DfgZHRukf9jMwMsrIqDIyGmDYH2A0oIyqMhpQAqoEAgT/VUUVxv6wgn9hv/5nNht/dYMjozN/EpEPbk74FwneFhFk3G2PCB6B7711iniv4PN6iPd6SIr3khTnJSneS3piHOlJPjKS4shNTSA/LYEF6YkUZCUR57XPgLFs2gAQES/wTeAWoB7YJyI7VfXwuNXuATpUdbmI3Ak8DHwKGAT+Bljj/Iz3beD3gT0EA2AL8PzMXo6JJF39I7xd18E7pzo40NBFTWsfdR0DjAbOPyKnJfhIS/SRnOAjKc5LYpyHxDgPaYk+fB4PcV7B63F+RJyDI3jGDpgCY4fTsQPoeDJxwUU6cbZ3RtvrJHd03IKxkAqGWfB+MOCC/y7KSMIfCDAyGmBoJEBPzwgDw6P0D4/SM+ind8h/3u/0eYQl2ckszUthTUEGVy7JYv2STNIT42b0WkzkCOUbwEagSlWrAUTkSWAbMD4AtgF/59zeAXxDRERV+4DXRWT5+CcUkUVAuqq+5dz/LvBxLACi3um2fp4/2MjzB5t4t64TAI9AWX4aqxdn8LHLF1Ock8LC9ETy0xPIS00gPSkOr2eGR+g5Fu4nQ/lHA3QP+mnpGaK5Z5CmrkFq2/qobumjqrmXl482oxoMwg1Lsti6dhFb1iykIDNpnl6BcUMoAVAA1I27Xw9cfaF1VNUvIl1ADtA6xXPWT3jOgslWFJF7gXsBliyxM/4iUSCg/OJ4M//xy2r21LQDsKYgnS/fvIKrSrJYV5RJaoKdlD6XfF4P2SnxZKfEs3Jh2nmPdw+O8F5dJ/tqO/jZoSa++txhvvrcYa4vy+UPPrSMa5fnIDP9mmTCTti/61T1EeARgIqKCusjiCCqygsHm/jaS8c5fraXxRmJ/NWWcj66bhFF2clul2fGSU+M4/qyPK4vy+NPb1lBTWsfz713hu++dYrfeWwPqxal8+e3ruDG8gVul2pmUSgB0AAUjbtf6CybbJ16EfEBGQQ7g6d6zsJpntNEmPHNIJ39w+x87wxHm3rIT0vgjg2FrCvMxOsRXjtxoS+G5lLNRRNUTmoCf3zDct6t6+TVEy189juVrCnI4GPrFpFm/QRRIZQA2AeUiUgpwYP0ncCnJ6yzE7gbeBPYDuyeakSPqjaKSLeIbCLYCfwZ4N8uoX4Thipr23nuQCOqytY1C7lmWW7Yt+Gbyfm8HipKslm/JJPXTrTyytFmqpp7uP3yAtYXZbpdnpmhaQPAadP/AvAiwWGgj6vqIRH5ClCpqjuBx4DviUgV0E4wJAAQkVogHYgXkY8Dv+mMIPojPhgG+jzWARzxAqo8f6CRX51sY1leCr91RSHZKfFul2Vmgc/j4YaV+axdnMEz79TzVGUdLT2D3HzZAusbiGAh9QGo6i6CQzXHL3tw3O1B4I4LbFtygeWVnD801ESoIf8oT+2r40hTD5uX5fCRtYvw2IEh6uSmJXDPdaX85N0zvHKshba+YT55ZaGdTxChwr4T2IS/YX+Ax1+vob5jgI+tW8TmZblul2TmkM/j4RNXFJCbmsCLh5roHfTze9eU4LMQiDj2P2ZmZDSg/HDvaeo7Brhr4xI7+McIEeHDK/LYvqGQ6tY+nt5fT8BO5I849g3AXDJV5b/fbeDY2R62rV/MmoIMt0sy8+zKJVn0Dvp54VATaYk+PrJ2kfUJRBALAHPJXj7azP5THdywMp+rS3PcLse45PqyXLoHR3jjZBsZScHzCUxksCYgc0mqmnvZfbSZK5dkcfNl+W6XY1wkIty2dhFrFqfz4qEm6tr73S7JhMgCwFy0geFRduyvIzc1gdsvX2xf+Q0eET5xZSHpiXE8VVnHkH8WZkc1c84CwFy0n7zXQO+Qn/9RUUi8z/6ETFBinJftFYW09w2z60CT2+WYENi711yU9+o6eb++ixvLF1CYZfP5mF+3NDeV68py2VfbztHGbrfLMdOwADAh6x/ys/O9MyzJTubDK6yjz0zulssWsCgjkR+/08DQbFwox8wZCwATspePNTM4MspvXVFgc/uYC/J5PXx8fQE9Q35ePdHidjlmChYAJiStPUPsqW7jqpJsFqQnul2OCXNF2cmsK8zgtROtdPYPu12OuQALABOS5w81Eef1cJMN+TQhunX1QgB+fvisy5WYC7EAMNOqbunlSGM3H16RZ/PAm5BlJcdz7fJc3qnrpL7Dzg0IRxYAZkoBVXYdbCQzKY5rl9s8P+bifHhFHinxXnYdaGKKS4QYl1gAmCkdb+rhTOcgN69aYFP+mouWGOflxvJ8atv6qG2zbwHhxt7RZkqvnmghMymOywvt6k/m0lSUZJMS7+XV4zYiKNxYAJgLOu18art2uV3S0Vy6OK+HzctyOHa2h6buQbfLMeNYAJgLevVEK0lxXipKstwuxUS4TaU5xHmF1+xbQFixADCTau4Z5EhjN5uWZpPg87pdjolwyQk+Kkqyea++084LCCMWAGZSr59oxesRu8KXmTXXOX9Lb5xsc7kSM8YCwJynd8jPO3WdbCjOIjXBrhlkZkdWSjzrCjPZW9vOoM0RFBYsAMx53jndwWhA2bTUrvJlZtfmpTkM+wO8X9/ldikGCwAzgaqyr7aDJdnJNuePmXWFWUksSE+g8lS726UYLADMBKfa+mntHeIqG/lj5oCIUFGcTX3HAI1dA26XE/MsAMyvqTzVToLPw5qCDLdLMVHqiqJMvB6hsrbD7VJingWAOWdwZJQDDV2sK8y0oZ9mziQn+Fi9OJ136joYGQ24XU5MswAw57xX38nIqFJRbM0/Zm5VFGczOBLg0Bm7bKSbLADMOZW1HSxMT6QwK8ntUkyUW5qXQlZyHJW11hnsJgsAA0BT9yANnQNsKM5CxOb9MXPLI0JFSTbVrX2099mZwW6xADAAvF/fiQDrCq3z18yPsRlmDzbYOQFuCSkARGSLiBwTkSoRuX+SxxNE5EfO43tEpGTcYw84y4+JyK3jln9ZRA6JyEER+aGI2KBzl6gqB+q7WJqXYlf8MvMmOyWewqwk3m/odLuUmDVtAIiIF/gmsBVYBdwlIqsmrHYP0KGqy4GvAQ87264C7gRWA1uAb4mIV0QKgC8CFaq6BvA66xkXNHYN0tY3zNoCm/PfzK+1BRmc6RykrXfI7VJiUijfADYCVapararDwJPAtgnrbAOecG7vAG6SYEPyNuBJVR1S1Rqgynk+AB+QJCI+IBk4M7OXYi7VgYYuPAKrF6e7XYqJMWud800OWDOQK0IJgAKgbtz9emfZpOuoqh/oAnIutK2qNgD/BJwGGoEuVf3ZZL9cRO4VkUoRqWxpsbnEZ5uq8n59J8vyUkmxid/MPMtMjmdJdrIFgEtc6QQWkSyC3w5KgcVAioj8zmTrquojqlqhqhV5eXnzWWZMaOgcoKN/5NwnMWPm29qCDBq7BmnpsWag+RZKADQARePuFzrLJl3HadLJANqm2PZmoEZVW1R1BHgWuOZSXoCZmQP1XXhFWL3YAsC4Y01BBgIcsM7geRdKAOwDykSkVETiCXbW7pywzk7gbuf2dmC3qqqz/E5nlFApUAbsJdj0s0lEkp2+gpuAIzN/OeZiqCoHGrpYnp9KUrxN/WDckZEUR3FOsk0R7YJpA8Bp0/8C8CLBg/RTqnpIRL4iIrc7qz0G5IhIFfCnwP3OtoeAp4DDwAvAfao6qqp7CHYWvw0ccOp4ZFZfmZlWfccAnQMjrLWx/8ZlawsyaO4ZotkuGj+vQur1U9VdwK4Jyx4cd3sQuOMC2z4EPDTJ8r8F/vZiijWz60hjNx6Byxba6B/jrlWLM/h/7zdypKmHfLsOxbyxM4Fj2NGmHopzUqz5x7guIymOxRmJHG20yeHmkwVAjOroH6ape5DyhWlul2IMAOWL0jnd3k/fkN/tUmKGBUCMGvukZc0/JlyUL0xDgWNne9wuJWZYAMSoo0095KbGk5uW4HYpxgCwODOJtESfNQPNIwuAGDQ0Mkp1ax/l9unfhBGPCOUL0zjR3Is/YFcKmw8WADHoRHMvowG19n8TdsoXpjPkD1DT2ud2KTHBAiAGHW3qJjHOQ3FOitulGPNrluWl4vMIRxutH2A+WADEmIAqR5t6WLEgDa/Hrvxlwku8z8Py/FSONnUTnEzAzCULgBhT395P//Cojf4xYat8YTod/SOctcnh5pwFQIw53tyLAGULUt0uxZhJrXT6pk7YcNA5ZwEQY06c7aEwK4nkeJv734SnjKQ48tMSqGrudbuUqGcBEEMGhkep7xhgeb6N/jHhrSw/lZrWPkZGbTjoXLIAiCFVLb0osMKaf0yYK1uQhj+g1Npw0DllARBDqpp7SPB5KMxKdrsUY6ZUkpOC1yOcsGagOWUBECNUlRPNvSzLS7Xhnybsxfs8lOQkWz/AHLMAiBFtvcN09o+wPN+af0xkKMtPo6l7kO7BEbdLiVoWADHiRHNwSF2ZBYCJEGMfVuxbwNyxAIgRJ5p7yU6JJyfVZv80kWFhRiIpCT47H2AOWQDEAH8gQHVLn336NxHFI0JZfipVzb0EbFqIOWEBEANOt/czPBqwADARpyw/lb7hURq77GLxc8ECIAacdKZ/WJpnAWAiyzLnQ8tJ6weYExYAMaC6pY+CrCQS4+zi7yaypCfGkZeWQHWrBcBcsACIckP+Ueo6+lmaa5/+TWRamptCbWs/owHrB5htFgBR7lRbPwGFZXl28RcTmZblpTI8GqC+o9/tUqKOBUCUq27pxStiV/8yEas0N/i3W23zAs06C4Aod7Klj6LsJOJ99l9tIlNKgo9FGYmcbLF+gNlmR4UoNjA8ypnOARv9YyLe0twUTrf12/TQs8wCIIrVtvWhwFJr/zcRbmleKv6AUtdu/QCzyQIgilW39OLzCEts+mcT4UpzUxCCTZpm9lgARLGTLX0U5yTj89p/s4lsiXFeCrKSqLZ+gFkV0pFBRLaIyDERqRKR+yd5PEFEfuQ8vkdESsY99oCz/JiI3DpueaaI7BCRoyJyREQ2z8YLMkG9Q36augdZZu3/JkoszU2lrqOfYb/1A8yWaQNARLzAN4GtwCrgLhFZNWG1e4AOVV0OfA142Nl2FXAnsBrYAnzLeT6ArwMvqGo5cDlwZOYvx4ypcYbMWQewiRbL8lIIaLBvy8yOUL4BbASqVLVaVYeBJ4FtE9bZBjzh3N4B3CQi4ix/UlWHVLUGqAI2ikgG8CHgMQBVHVbVzpm/HDOmuqWXeJ+Hgswkt0sxZlYU56TgkeDUJmZ2hBIABUDduPv1zrJJ11FVP9AF5EyxbSnQAvyXiLwjIo+KiA1VmUU1rX0UZyfb5R9N1Ih3rmddY/MCzRq3egd9wJXAt1X1CqAPOK9vAUBE7hWRShGpbGlpmc8aI1bfkJ/mnqFzZ1AaEy1Kc1No6BywfoBZEkoANABF4+4XOssmXUdEfEAG0DbFtvVAvarucZbvIBgI51HVR1S1QlUr8vLyQijXjLX/WwCYaFOaG+wHONVuzUCzIZQA2AeUiUipiMQT7NTdOWGdncDdzu3twG5VVWf5nc4ooVKgDNirqk1AnYisdLa5CTg8w9diHDVtfcR5hYIsa/830aU4OxmPfPAhx8yMb7oVVNUvIl8AXgS8wOOqekhEvgJUqupOgp253xORKqCdYEjgrPcUwYO7H7hPVUedp/5j4AdOqFQD/3OWX1vMqm3tY0l2Mj6Pjf830SUhzsvizCQLgFkybQAAqOouYNeEZQ+Ouz0I3HGBbR8CHppk+btAxcUUa6Y3MDxKU9cgN12W73YpxsyJ0pwU3qhuY2Q0QJyd5DgjtveizNj8P6V2ARgTpUpzUxgNKKdtXqAZswCIMjWtffg8QqG1/5soVZwTnBfImoFmzgIgytS09lGUnWxfjU3USor3sigj0QJgFthRIooMjgTn/7fhnybaleamUNfej9+uDzAjFgBR5NS59n8LABPdSnNT8AeU+o4Bt0uJaBYAUaSmtQ+vCEU2/7+JciXOh5wamxhuRiwAokhNax+FWXb9XxP9kuN9LExPpNb6AWbEjhRRon/YT0PnwLlPRsZEu5LcZE61WT/ATFgARIl3TncSUGv/N7GjJCeF4dEAh850u11KxLIAiBJ7atoRYEm2tf+b2DD2bXdvTbvLlUQuC4AosbemjcWZSSTGeadf2ZgokJ4YR05KPHssAC6ZBUAUGPKP8s7pTkpy7NO/iS2luSnsq20nEFC3S4lIFgBR4EB9F0P+gLX/m5hTkptC18AIx5t73C4lIlkARIGxr8DFORYAJraU5lg/wExYAESBvTXtrFiQSkpCSLN7GxM1MpPjWJyRaP0Al8gCIML5RwPsP9XBxtJst0sxZt6JCBtLs9lb007wIoTmYlgARLgjjT30DvnZWJrjdinGuGJjaQ4tPUPUttn1AS6WBUCE21PTBsDGEvsGYGLT2Lffvc57wYTOAiDC7alppzgnmYUZiW6XYowrluWlkJsaz55q6we4WBYAESwQUPbVtnO1tf+bGDbWD2AdwRfPAiCCHW/uobN/xNr/TczbWJJNQ+cA9R3WD3AxLAAi2NhXXvsGYGLd1UuDH4KsGejiWABEsD01bRRkJlFkE8CZGLdyQRoZSXHnBkWY0FgARChVZW9Nu43/NwbweISrSrLtjOCLZAEQoU629NHaO2zNP8Y4Ni3Npratn7Pdg26XEjEsACLUufH/FgDGAB+8F96qtmagUFkARKi9Ne3kpSXYDKDGOFYtSic1wWfNQBfBAiACqSp7qoPj/0XE7XKMCQs+r4eKkiw7H+AiWABEoNPt/TR1D1r7vzETbCzNpqq5l9beIbdLiQgWABFo7BPO2NhnY0zQ1c5JkfvsW0BILAAi0J7qdrJT4inLT3W7FGPCytqCDJLivNYMFKKQAkBEtojIMRGpEpH7J3k8QUR+5Dy+R0RKxj32gLP8mIjcOmE7r4i8IyLPzfSFxApV5a3qNjaWWPu/MRPF+zxsKM7izZM2EigU0waAiHiBbwJbgVXAXSKyasJq9wAdqroc+BrwsLPtKuBOYDWwBfiW83xjvgQcmemLiCV17QM0dA6weZk1/xgzmc3Lcjh2toc26weYVijfADYCVapararDwJPAtgnrbAOecG7vAG6S4MfTbcCTqjqkqjVAlfN8iEgh8BHg0Zm/jNgxNsbZAsCYyW0amxfImoGmFUoAFAB14+7XO8smXUdV/UAXkDPNtv8C/CUQmOqXi8i9IlIpIpUtLS0hlBvd3qxuIzfV2v+NuZB1hRkkx3utGSgErnQCi8hHgWZV3T/duqr6iKpWqGpFXl7ePFQXvlSVN0+2cfXSHGv/N+YC4rwerirJ5k07I3haoQRAA1A07n6hs2zSdUTEB2QAbVNsey1wu4jUEmxSulFEvn8J9ceU2rbg+P/NNvzTmCltXpZDVXMvzT02L9BUQgmAfUCZiJSKSDzBTt2dE9bZCdzt3N4O7FZVdZbf6YwSKgXKgL2q+oCqFqpqifN8u1X1d2bh9US1sa+01v5vzNTGPiS9ZdcHmNK0AeC06X8BeJHgiJ2nVPWQiHxFRG53VnsMyBGRKuBPgfudbQ8BTwGHgReA+1R1dPZfRmx4s7qN/LQEltr8P8ZMafXidNISfNYPMA1fKCup6i5g14RlD467PQjccYFtHwIemuK5fwH8IpQ6YtlY+/+1y63935jp+LweNpZm28yg07AzgSPEyZbg/CbW/m9MaDYvy6GmtY+mLusHuBALgAhh7f/GXJyx8wHerG51uZLwZQEQId6sbmNxRiJL7Pq/xoRk1aJ0MpLirB9gChYAESAQCLb/b16Wa+3/xoTI4xE2Lc3mV1VtBAclmoksACLAoTPddPSPcH1ZrtulGBNRrivLo6FzgNq2frdLCUsWABHgtargFBjXLrcAMOZiXO+8Z14/YdPITMYCIAK8dryV8oVp5KUluF2KMRGlOCeZwqwkXj1hHcGTsQAIcwPDo+w/1WHNP8ZcAhHh+rJc3jrZhn90ynknY5IFQJjbU9PG8GiA68tieyI8Yy7V9WV59Az5ea++0+1Swo4FQJh7/UQr8b7gWY3GmIt3zbIcROA1awY6jwVAmHu9qpWrSrJIjPNOv7Ix5jyZyfGsK8jgdQuA81gAhLHmnkGONvVw3XJr/jFmJq4ry+Wduk56BkfcLiWsWACEsV9VBT+xWAewMTNz3fI8RgNq00NPYAEQxl470Up2SjyrFqW7XYoxEe3K4kyS4rx2PsAEFgBhKhBQXjvRyjXLcvB4bPoHY2Yiwedl09JsOx9gAguAMHXoTDctPUPcsDLf7VKMiQq/sTKfmtY+alr73C4lbFgAhKndR5sRgd9YaR3AxsyGG8uDH6Z2H212uZLwYQEQpnYfa2Z9USY5qTb9gzGzoSg7mbL8VF6xADjHAiAMtfQM8V5dJzda848xs+rG8nz21LTRO+R3u5SwYAEQhn5xLPgJ5YZyCwBjZtMN5fmMjKqNBnJYAIShV441syA9gdWLbfinMbNpQ3EW6Yk+6wdwWACEmWF/gFePt3Jjeb5d/cuYWRbn9fChFXnsPtpCIGBXCbMACDOVte30Dvlt+Kcxc+TG8nxae4c4eKbL7VJcZwEQZnYfbSbe67GrfxkzRz68Ig8RGw4KFgBhRVXZfbSZTctySEnwuV2OMVEpJzWBK4oyefmIBYAFQBg5fraX6tY+brnMmn+MmUu3rFrIgYYu6jti+2LxFgBhZNeBRkTg1jUL3S7FmKh229rge+yFg00uV+IuC4Aw8vzBRq4qySY/LdHtUoyJasU5KaxenM6uA41ul+IqC4AwUdXcw/GzvXxk7SK3SzEmJty2dhFvn+6ksWvA7VJcYwEQJp4/EPwqusWaf4yZF1ud99rYey8WhRQAIrJFRI6JSJWI3D/J4wki8iPn8T0iUjLusQec5cdE5FZnWZGIvCIih0XkkIh8abZeUKTadbCJiuIsFqRb848x82FpXirlC9N4/mDsNgNNGwAi4gW+CWwFVgF3iciqCavdA3So6nLga8DDzrargDuB1cAW4FvO8/mBP1PVVcAm4L5JnjNm1LT2caSxm63W/GPMvLpt7SIqT3VwtnvQ7VJcEco3gI1AlapWq+ow8CSwbcI624AnnNs7gJskOI/BNuBJVR1S1RqgCtioqo2q+jaAqvYAR4CCmb+cyDTWEWXNP8bMr9vWLkQ1dkcDhRIABUDduPv1nH+wPreOqvqBLiAnlG2d5qIrgD2T/XIRuVdEKkWksqUlOmfwe/5gI+uLMinITHK7FGNiyvL8NMryU/lpjI4GcrUTWERSgWeAP1HV7snWUdVHVLVCVSvy8qLv6lhVzT0cbOjmo+us+ccYN3x03WL21bbT0Bl7o4FCCYAGoGjc/UJn2aTriIgPyADaptpWROIIHvx/oKrPXkrx0eDp/fV4PcK29THbAmaMqz5xZQGq8Oz+erdLmXehBMA+oExESkUknmCn7s4J6+wE7nZubwd2q6o6y+90RgmVAmXAXqd/4DHgiKr+82y8kEjkHw3w7NsN3LAyn7w0u/SjMW4oyk5m09JsdrxdT/CwFTumDQCnTf8LwIsEO2ufUtVDIvIVEbndWe0xIEdEqoA/Be53tj0EPAUcBl4A7lPVUeBa4HeBG0XkXefntll+bWHvtROttPQMsX1DodulGBPT7thQxKm2fvbVdrhdyrwKacpJVd0F7Jqw7MFxtweBOy6w7UPAQxOWvQ7E/NVOnt5fR3ZKPDfapR+NcdXWtQt58CcH2bG/jo2l2W6XM2/sTGCXdPQN89LhZj6+voB4n/03GOOm5HgfH1m3iJ++30j/cOxcMN6OPC7Z+d4ZhkcD3FFhzT/GhIM7KoroGx5lVwxNDWEB4JKn99expiCdyxbZhd+NCQcVxVmU5CSzY3/d9CtHCQsAF7xX18nBhm7u2FA0/crGmHkhItxRUcRb1e1UNfe4Xc68sABwwaOv15CW4OOTNvrHmLBy18YlJPg8PPZ6rdulzAsLgHnW0DnArgON3HX1ElLtur/GhJXslHg+cWUhz75dT1vvkNvlzDkLgHn2xBu1ANx9TYmrdRhjJnfPdSUM+QP8YM9pt0uZcxYA86h3yM8P95zmtrWLbOI3Y8LU8vw0bliZx3ffrGVwZNTtcuaUBcA8empfHT1Dfu65rtTtUowxU/jc9Utp7R1m53tn3C5lTlkAzJPRgPJfb9RQUZzF+qJMt8sxxkzhmmU5lC9M47HXaqJ6fiALgHny7Nv11LUP8Lnrl7pdijFmGiLC71+/lGNne3jxUPSeGGYBMA8GR0b52s+Pc3lhBreuXuB2OcaYEGxbv5iy/FT+4YVj+EcDbpczJywA5sH33jzFma5B/mprOcGZsI0x4c7n9fAXt66kurWPpyqj81oBFgBzrGtghG+8Uq25EA8AAAuTSURBVMWHVuRxzbJct8sxxlyEW1YtYENxFv/y0nEGhqNvRJAFwBz7j1+epGtghL/astLtUowxF0lEuH9rOc09Qzz+qxq3y5l1FgBz6EznAI//qoZt6xezenGG2+UYYy7BVSXZ3HxZPv/+i5O0RtnZwRYAc0RVeeDZAwjCn/+mffo3JpLdv7WcIX+Av/3JIbdLmVUWAHPk6cp6fnm8hfu3llOUnex2OcaYGVien8aXbi7jpwca+en7jW6XM2ssAOZAY9cAX33uMFeXZvO7m4rdLscYMwv+4ENLWVuQwYM/ORg1E8VZAMwyVeX+Zw7gDyj/uP1yPB4b9mlMNPB5PfzTHZfTM+jnwZ3R0RRkATDLHnu95lzTz5Ica/oxJpqsXOg0Bb3fyA/3Rv5soRYAs+ilw2d5aNcRblu70Jp+jIlSf/ChpXx4RR5/898HeaOq1e1yZsQCYJYcOtPFF598h3UFGfyfO9Zb048xUcrn9fBvn76CpXkpfP77+znZ0ut2SZfMAmAWNHYN8LknKslIiuM/P1NBUrzX7ZKMMXMoPTGOx+6+ijivh89+Z1/Enh9gATBDVc29bP/2m/QM+nn07gry0xPdLskYMw+KspN55DMVnO0eZPu336Cuvd/tki6aBcAMvH26g+3//gZD/gBP3rvJzvY1JsZsKM7iB5/bREf/CJ/49hscOtPldkkXxQLgEqgqP3m3gU//51tkJMXxzB9uZk2BHfyNiUUbirPY8fnN+DzCnf/xFi8cjJzrB1gAXKS23iH+6Adv86Un32XVonR2fP4ainNS3C7LGOOisgVpPPOH11Ccm8znv7+fL//oXbr6R9wua1o+twuIFCOjAZ59u55/eOEYPYN+7t9azu9fvxSvjfYxxgCLM5P48R9dyzd2V/HNV6p442Qr928t52PrFuPzhudnbQuAaQz5R3lmfwPf+kUV9R0DXF6UyT98ch0rF6a5XZoxJszEeT18+ZYV3LJqAX+x432+/KP3+NeXq7jvhuVsW7+YuDALAguASYwGlD01bex89wy7DjTSPejn8qJMvrJtNTeszLerehljprSmIIOf/vF1/OxwE19/uYo/f/o9HvrpYT6ybhG3X15ARXFWWJwrFFIAiMgW4OuAF3hUVf9+wuMJwHeBDUAb8ClVrXUeewC4BxgFvqiqL4bynPOprXeIE829vFvXyd6advbVttMz6Ccl3stvrl7IJ68s5NrlOXbgN8aEzOMRtqxZxK2rF/KLYy08+04DO/bX8/23TpORFMdVJdlcXZrN5UWZlOWnkpUSP+81ThsAIuIFvgncAtQD+0Rkp6oeHrfaPUCHqi4XkTuBh4FPicgq4E5gNbAYeElEVjjbTPecs0JVefNkG10DI3QOjNA1MEJz9xBN3QM0dQ1S29ZPe9/wufWX5aXw0XWLuW55LjeW59tJXcaYGRERbijP54byfPqG/Lx05CxvVLWxp6aNl46cPbdebmo8xTkpLMxIZGF6InlpCWQmxZGZHEdWcjxXL82Z9dpC+QawEahS1WrnxTwJbAPGH6y3AX/n3N4BfEOCH5e3AU+q6hBQIyJVzvMRwnPOChHhs0/sY3AkcG5ZcryXRRmJLMxI5NbVC1ien0ZZfiqXLUonLy1htkswxhgAUhJ8bFtfwLb1BQA0dw9yuLGbquZeTpztpa6jnyNnutl9pJmBkQ+uQZybmkDl/7p51usJJQAKgLpx9+uBqy+0jqr6RaQLyHGWvzVh2wLn9nTPCYCI3Avc69ztFZFjIdQ8rSOXtlkuEI6zP4VrXWC1XYpwrQvCsLbf/uBm2NXmmHFdpwD5m0ve/IIzU4Z9J7CqPgI84nYdACJSqaoVbtcxUbjWBVbbpQjXusBquxThWheEdiJYA1A07n6hs2zSdUTEB2QQ7Ay+0LahPKcxxpg5FEoA7APKRKRUROIJdurunLDOTuBu5/Z2YLeqqrP8ThFJEJFSoAzYG+JzGmOMmUPTNgE5bfpfAF4kOGTzcVU9JCJfASpVdSfwGPA9p5O3neABHWe9pwh27vqB+1R1FGCy55z9lzfrwqIpahLhWhdYbZciXOsCq+1ShGtdSPCDujHGmFgTXuclG2OMmTcWAMYYE6MsAKYhIv8oIkdF5H0R+bGIZI577AERqRKRYyJyq0v1bXF+f5WI3O9GDU4dRSLyiogcFpFDIvIlZ3m2iPxcRE44/2a5WKNXRN4Rkeec+6UissfZdz9yBiS4UVemiOxw/s6OiMjmcNhvIvJl5//yoIj8UEQS3dpnIvK4iDSLyMFxyybdRxL0r06N74vIlS7UFtbHjTEWANP7ObBGVdcBx4EHACZMc7EF+JYzbca8GTdNx1ZgFXCXU5cb/MCfqeoqYBNwn1PL/cDLqloGvOzcd8uX+PVzAB8Gvqaqy4EOglOauOHrwAuqWg5cTrBGV/ebiBQAXwQqVHUNwcEaY9O8uLHPvkPwfTbehfbRVoIjDssInkT6bRdqC9vjxngWANNQ1Z+pqt+5+xbBcxZg3DQXqloDjJ/mYr6cm6ZDVYeBsSk15p2qNqrq287tHoIHsQKnniec1Z4APu5GfSJSCHwEeNS5L8CNBKcuca02EckAPkRwJB2qOqyqnYTHfvMBSc65PclAIy7tM1V9leAIw/EutI+2Ad/VoLeATBFZNJ+1hflx4xwLgIvzWeB55/ZkU2QUnLfF3AqHGs4jIiXAFcAeYIGqNjoPNQELXCrrX4C/BMYmhcoBOse9Sd3ad6VAC/BfTvPUoyKSgsv7TVUbgH8CThM88HcB+wmPfTbmQvso3N4X4XbcOMcCABCRl5x2zok/28at89cEmzl+4F6l4U9EUoFngD9R1e7xjzknB877uGMR+SjQrKr75/t3h8AHXAl8W1WvAPqY0Nzjxn5z2tO3EQyoxUAK5zdzhA23/ramE+7HjbCfC2g+qOqU0+yJyO8BHwVu0g9OnAiH6SzCoYZzRCSO4MH/B6r6rLP4rIgsUtVG52t4swulXQvcLiK3AYlAOsF290wR8TmfaN3ad/VAvaruce7vIBgAbu+3m4EaVW0BEJFnCe7HcNhnYy60j8LifRHGx41z7BvANCR44Zq/BG5X1f5xD11omov5FDZTajht6o8BR1T1n8c9NH6akLuBn8x3bar6gKoWqmoJwX20W1V/G3iF4NQlbtbWBNSJyEpn0U0Ez5x3e7+dBjaJSLLzfztWl+v7bJwL7aOdwGec0UCbgK5xTUXzIsyPGx9QVfuZ4odgJ00d8K7z8+/jHvtr4CRwDNjqUn23ERxlcBL4axf303UEv4K/P25f3Uawrf1l4ATwEpDt8v/nbwDPObeXEnzzVQFPAwku1bQeqHT23X8DWeGw34D/DRwFDgLfAxLc2mfADwn2RYwQ/NZ0z4X2ESAER8edBA4QHMk037WF9XFj7MemgjDGmBhlTUDGGBOjLACMMSZGWQAYY0yMsgAwxpgYZQFgjDExygLAmBCIyMdFREWk3O1ajJktFgDGhOYu4HXnX2OiggWAMdNw5je6juAJPnc6yzwi8i1nzvefi8guEdnuPLZBRH4pIvtF5MW5nInSmJmwADBmetsIztd/HGgTkQ3AJ4ASgtdh+F1gM5ybD+nfgO2qugF4HHjIjaKNmY5NBmfM9O4iOHkcBK+5cBfB987TqhoAmkTkFefxlcAa4OfBKXTwEpwmwJiwYwFgzBREJJvgRVDWiogSPKAr8OMLbQIcUtXN81SiMZfMmoCMmdp24HuqWqyqJapaBNQQvALUJ52+gAUEJ5mD4ARfeSJyrklIRFa7Ubgx07EAMGZqd3H+p/1ngIUEZ348DHwfeJvgtMPDBEPjYRF5j+BMkNfMX7nGhM5mAzXmEolIqqr2ikgOwSmSr9Xg/P7GRATrAzDm0j0nIplAPPBVO/ibSGPfAIwxJkZZH4AxxsQoCwBjjIlRFgDGGBOjLACMMSZGWQAYY0yM+v8o85YVwHpvVAAAAABJRU5ErkJggg==\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "sns."
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "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.6.8"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/Project/Age_Industry.csv b/Project/Age_Industry.csv
new file mode 100644
index 0000000..61b7740
--- /dev/null
+++ b/Project/Age_Industry.csv
@@ -0,0 +1,96049 @@
+GEO;SEX;CAS;POB;OCC;IND;AGE;TIME;VALUE;FLAGS;FOOTNOTES
+Belgium;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;553484;;
+Belgium;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;314136;;
+Belgium;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;529957;;
+Belgium;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;899599;;
+Belgium;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;173933;;
+Belgium;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;912815;;
+Belgium;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Education ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Education ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Education ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Education ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;2027;;
+Belgium;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;10266;;
+Belgium;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;7651;;
+Belgium;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;1184;;
+Belgium;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;53;;
+Belgium;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;17;;
+Belgium;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;161;;
+Belgium;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;83;;
+Belgium;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;2;;
+Belgium;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;20851;;
+Belgium;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;79267;;
+Belgium;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;30248;;
+Belgium;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;507;;
+Belgium;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;6;;
+Belgium;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1842;;
+Belgium;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2993;;
+Belgium;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;657;;
+Belgium;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;805;;
+Belgium;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;3108;;
+Belgium;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;891;;
+Belgium;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;12;;
+Belgium;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;4477;;
+Belgium;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;16597;;
+Belgium;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;6990;;
+Belgium;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;379;;
+Belgium;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;5;;
+Belgium;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;73435;;
+Belgium;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;165448;;
+Belgium;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;65845;;
+Belgium;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2640;;
+Belgium;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;34;;
+Belgium;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;8494;;
+Belgium;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;28773;;
+Belgium;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;11538;;
+Belgium;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;167;;
+Belgium;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;2;;
+Belgium;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;24636;;
+Belgium;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;42785;;
+Belgium;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;19516;;
+Belgium;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;1159;;
+Belgium;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;17;;
+Belgium;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;7163;;
+Belgium;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;21105;;
+Belgium;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;6337;;
+Belgium;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;97;;
+Belgium;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;1;;
+Belgium;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;11276;;
+Belgium;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;43839;;
+Belgium;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;19116;;
+Belgium;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;336;;
+Belgium;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;6;;
+Belgium;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;2232;;
+Belgium;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;7608;;
+Belgium;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;4605;;
+Belgium;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;455;;
+Belgium;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;6;;
+Belgium;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;24210;;
+Belgium;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;57650;;
+Belgium;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;18902;;
+Belgium;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;800;;
+Belgium;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;10;;
+Belgium;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;61357;;
+Belgium;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;116622;;
+Belgium;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;36974;;
+Belgium;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;725;;
+Belgium;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;2;;
+Belgium;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;41804;;
+Belgium;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;155845;;
+Belgium;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;90451;;
+Belgium;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;510;;
+Belgium;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;4;;
+Belgium;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;53163;;
+Belgium;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;144267;;
+Belgium;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;70161;;
+Belgium;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;391;;
+Belgium;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;81743;;
+Belgium;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;226023;;
+Belgium;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;101573;;
+Belgium;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;1421;;
+Belgium;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;7;;
+Belgium;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;4958;;
+Belgium;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;11332;;
+Belgium;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;4950;;
+Belgium;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;231;;
+Belgium;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Belgium;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;21287;;
+Belgium;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;42248;;
+Belgium;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;18190;;
+Belgium;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;1370;;
+Belgium;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;19;;
+Belgium;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;264;;
+Belgium;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1188;;
+Belgium;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1035;;
+Belgium;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;128;;
+Belgium;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;2;;
+Belgium;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;160;;
+Belgium;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;848;;
+Belgium;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;469;;
+Belgium;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;19;;
+Belgium;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;6317;;
+Belgium;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;29193;;
+Belgium;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;26324;;
+Belgium;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;95;;
+Belgium;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;3;;
+Belgium;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;526527;;
+Belgium;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;187458;;
+Belgium;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;369495;;
+Belgium;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;690939;;
+Belgium;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;73649;;
+Belgium;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;954482;;
+Belgium;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Education ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Education ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Education ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Education ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;5974;;
+Belgium;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;20438;;
+Belgium;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;13996;;
+Belgium;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;2896;;
+Belgium;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;111;;
+Belgium;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;413;;
+Belgium;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;1610;;
+Belgium;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;843;;
+Belgium;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;35;;
+Belgium;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;67502;;
+Belgium;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;236852;;
+Belgium;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;104206;;
+Belgium;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;2312;;
+Belgium;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;16;;
+Belgium;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2900;;
+Belgium;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;8382;;
+Belgium;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;4541;;
+Belgium;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;11;;
+Belgium;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;3201;;
+Belgium;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;13277;;
+Belgium;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;5442;;
+Belgium;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;83;;
+Belgium;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;73319;;
+Belgium;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;152019;;
+Belgium;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;64584;;
+Belgium;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;2785;;
+Belgium;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;19;;
+Belgium;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;75979;;
+Belgium;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;195625;;
+Belgium;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;88228;;
+Belgium;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;6352;;
+Belgium;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;84;;
+Belgium;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;26161;;
+Belgium;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;98468;;
+Belgium;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;66360;;
+Belgium;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;1944;;
+Belgium;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;6;;
+Belgium;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;27880;;
+Belgium;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;47789;;
+Belgium;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;17727;;
+Belgium;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;1020;;
+Belgium;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;10;;
+Belgium;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;16596;;
+Belgium;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;49447;;
+Belgium;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;17900;;
+Belgium;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;328;;
+Belgium;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;2;;
+Belgium;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;9103;;
+Belgium;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;39538;;
+Belgium;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;25092;;
+Belgium;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;765;;
+Belgium;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;11;;
+Belgium;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;2199;;
+Belgium;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;8161;;
+Belgium;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;5714;;
+Belgium;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;747;;
+Belgium;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;16;;
+Belgium;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;24418;;
+Belgium;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;68293;;
+Belgium;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;30109;;
+Belgium;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;2871;;
+Belgium;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;38;;
+Belgium;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;71320;;
+Belgium;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;103077;;
+Belgium;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;31218;;
+Belgium;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;1281;;
+Belgium;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;10;;
+Belgium;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;32391;;
+Belgium;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;133334;;
+Belgium;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;90142;;
+Belgium;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;1797;;
+Belgium;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;38;;
+Belgium;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;20165;;
+Belgium;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;57601;;
+Belgium;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;41633;;
+Belgium;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;794;;
+Belgium;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;3;;
+Belgium;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;19031;;
+Belgium;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;61864;;
+Belgium;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;38667;;
+Belgium;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;2629;;
+Belgium;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;43;;
+Belgium;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;7049;;
+Belgium;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;15061;;
+Belgium;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;7291;;
+Belgium;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;681;;
+Belgium;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;8;;
+Belgium;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;7120;;
+Belgium;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;21939;;
+Belgium;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;12657;;
+Belgium;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;1950;;
+Belgium;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;40;;
+Belgium;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;109;;
+Belgium;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;561;;
+Belgium;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;457;;
+Belgium;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;124;;
+Belgium;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;7;;
+Belgium;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;86;;
+Belgium;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;671;;
+Belgium;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;510;;
+Belgium;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;11;;
+Belgium;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;1;;
+Belgium;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Belgium;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;8039;;
+Belgium;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;39435;;
+Belgium;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;25200;;
+Belgium;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;373;;
+Belgium;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;2;;
+Belgium;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;386073;;
+Bulgaria;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;211765;;
+Bulgaria;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;394630;;
+Bulgaria;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;719844;;
+Bulgaria;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;70955;;
+Bulgaria;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;473554;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;4;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;3;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;3;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;:;c;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;5;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;6;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;9;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;3;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;8;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;:;c;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;4;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;3;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;42;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;152;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;6;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;149;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;370;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;46;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;1235;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;2553;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;227;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;15;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;18;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;3;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;4;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;21;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;7;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;5;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;4;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;74;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;238;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;10;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;20;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;39;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;5;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;5;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;9;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;:;c;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;147;;
+Bulgaria;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;915;;
+Bulgaria;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;477;;
+Bulgaria;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;49;;
+Bulgaria;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;9;;
+Bulgaria;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;136;;
+Bulgaria;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;88;;
+Bulgaria;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;801;;
+Bulgaria;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;6705;;
+Bulgaria;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;3359;;
+Bulgaria;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;146;;
+Bulgaria;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;22;;
+Bulgaria;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;313;;
+Bulgaria;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;191;;
+Bulgaria;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;27;;
+Bulgaria;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;230;;
+Bulgaria;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;154;;
+Bulgaria;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;5;;
+Bulgaria;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;364;;
+Bulgaria;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;1930;;
+Bulgaria;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;1050;;
+Bulgaria;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;57;;
+Bulgaria;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3421;;
+Bulgaria;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;18753;;
+Bulgaria;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;7701;;
+Bulgaria;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;652;;
+Bulgaria;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;343;;
+Bulgaria;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;2268;;
+Bulgaria;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;1026;;
+Bulgaria;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;40;;
+Bulgaria;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;1061;;
+Bulgaria;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;4201;;
+Bulgaria;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;1615;;
+Bulgaria;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;79;;
+Bulgaria;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;596;;
+Bulgaria;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;2091;;
+Bulgaria;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;521;;
+Bulgaria;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;33;;
+Bulgaria;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;571;;
+Bulgaria;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;3468;;
+Bulgaria;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;954;;
+Bulgaria;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;34;;
+Bulgaria;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;253;;
+Bulgaria;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;1521;;
+Bulgaria;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;715;;
+Bulgaria;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;45;;
+Bulgaria;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;631;;
+Bulgaria;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;4516;;
+Bulgaria;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;2226;;
+Bulgaria;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;96;;
+Bulgaria;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;303;;
+Bulgaria;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;1348;;
+Bulgaria;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;620;;
+Bulgaria;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;42;;
+Bulgaria;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;114;;
+Bulgaria;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;3487;;
+Bulgaria;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;2481;;
+Bulgaria;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;55;;
+Bulgaria;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Education ;Y15-29;2011;96;;
+Bulgaria;F;POP;TOTAL;Managers;Education ;Y30-49;2011;1927;;
+Bulgaria;F;POP;TOTAL;Managers;Education ;Y50-64;2011;2038;;
+Bulgaria;F;POP;TOTAL;Managers;Education ;Y65-84;2011;68;;
+Bulgaria;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;86;;
+Bulgaria;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;1691;;
+Bulgaria;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;1642;;
+Bulgaria;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;96;;
+Bulgaria;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;213;;
+Bulgaria;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;715;;
+Bulgaria;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;310;;
+Bulgaria;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;28;;
+Bulgaria;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;314;;
+Bulgaria;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;1773;;
+Bulgaria;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;974;;
+Bulgaria;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;141;;
+Bulgaria;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;19;;
+Bulgaria;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;6;;
+Bulgaria;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;3;;
+Bulgaria;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;35;;
+Bulgaria;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;13;;
+Bulgaria;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;12;;
+Bulgaria;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;80;;
+Bulgaria;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;31;;
+Bulgaria;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;272;;
+Bulgaria;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;1326;;
+Bulgaria;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;882;;
+Bulgaria;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;50;;
+Bulgaria;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;69;;
+Bulgaria;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;303;;
+Bulgaria;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;220;;
+Bulgaria;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;7;;
+Bulgaria;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;2004;;
+Bulgaria;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;7944;;
+Bulgaria;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;4288;;
+Bulgaria;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;102;;
+Bulgaria;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;196;;
+Bulgaria;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1092;;
+Bulgaria;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;531;;
+Bulgaria;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;4;;
+Bulgaria;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;111;;
+Bulgaria;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;539;;
+Bulgaria;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;296;;
+Bulgaria;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;8;;
+Bulgaria;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;899;;
+Bulgaria;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;2657;;
+Bulgaria;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;1644;;
+Bulgaria;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;76;;
+Bulgaria;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3094;;
+Bulgaria;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;8959;;
+Bulgaria;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3979;;
+Bulgaria;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;465;;
+Bulgaria;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;401;;
+Bulgaria;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;1817;;
+Bulgaria;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;1158;;
+Bulgaria;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;28;;
+Bulgaria;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;661;;
+Bulgaria;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;1290;;
+Bulgaria;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;653;;
+Bulgaria;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;23;;
+Bulgaria;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;3697;;
+Bulgaria;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;5655;;
+Bulgaria;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;1663;;
+Bulgaria;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;77;;
+Bulgaria;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;2135;;
+Bulgaria;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;5764;;
+Bulgaria;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;1895;;
+Bulgaria;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;79;;
+Bulgaria;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;308;;
+Bulgaria;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;1066;;
+Bulgaria;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;601;;
+Bulgaria;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;20;;
+Bulgaria;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;4654;;
+Bulgaria;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;14298;;
+Bulgaria;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;7869;;
+Bulgaria;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;465;;
+Bulgaria;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;4;;
+Bulgaria;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;729;;
+Bulgaria;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;1834;;
+Bulgaria;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;894;;
+Bulgaria;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;73;;
+Bulgaria;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;3134;;
+Bulgaria;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;21927;;
+Bulgaria;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;13016;;
+Bulgaria;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;234;;
+Bulgaria;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;4310;;
+Bulgaria;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;45965;;
+Bulgaria;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;35099;;
+Bulgaria;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;921;;
+Bulgaria;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;5;;
+Bulgaria;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;3585;;
+Bulgaria;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;27493;;
+Bulgaria;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;25565;;
+Bulgaria;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;1915;;
+Bulgaria;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;4;;
+Bulgaria;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;954;;
+Bulgaria;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;2856;;
+Bulgaria;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;2007;;
+Bulgaria;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;131;;
+Bulgaria;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;3;;
+Bulgaria;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;875;;
+Bulgaria;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;2982;;
+Bulgaria;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;2047;;
+Bulgaria;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;171;;
+Bulgaria;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;4;;
+Bulgaria;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;7;;
+Bulgaria;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;9;;
+Bulgaria;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;28;;
+Bulgaria;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;132;;
+Bulgaria;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;71;;
+Bulgaria;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;10;;
+Bulgaria;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;57;;
+Bulgaria;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;275;;
+Bulgaria;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;143;;
+Bulgaria;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;6;;
+Bulgaria;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;118;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;409;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;283;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;13;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;35;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;349;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;152;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;2508;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;8876;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;3467;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;72;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;144;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1255;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;603;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;100;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;380;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;293;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;695;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;1454;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;1096;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;40;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3321;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;6813;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2228;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;184;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;617;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;1860;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;826;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;5;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;418;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;763;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;356;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;8;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;1763;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;2347;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;726;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;18;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;3259;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;5917;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;1448;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;55;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;403;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;991;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;511;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;12;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;2283;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;3412;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;1563;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;57;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;761;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;928;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;359;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;13;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1977;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;8873;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;5417;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;65;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;233;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;783;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;641;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;19;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;705;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;3222;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;2640;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;152;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;518;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;1117;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;594;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;28;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;447;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;1153;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;623;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;39;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;7;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;20;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;58;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;28;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;20;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;47;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;22;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;510;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;1821;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;1699;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;64;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;97;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;496;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;375;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;11;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;3805;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;12595;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;6361;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;139;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;196;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1039;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;663;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;5;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;243;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1393;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1104;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;13;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;2473;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;4922;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;2216;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;77;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;8798;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;17365;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5011;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;156;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;2260;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;9860;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;6752;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;77;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;3000;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;3541;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;1312;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;29;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;2812;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;3356;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;1074;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;46;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;5025;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;7583;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;2420;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;77;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;979;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;1896;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;1011;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;31;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;4354;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;7591;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;3120;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;124;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;2713;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;4435;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;1926;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;111;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;2167;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;13125;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;8470;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;102;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;824;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;4470;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;4398;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;85;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;837;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;3062;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;2345;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;85;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;2515;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;2220;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;1096;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;70;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;1290;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;2767;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;1780;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;123;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;3;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;10;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;34;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;16;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;31;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;160;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;103;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;9;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;107;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;271;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;144;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;281;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;975;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;691;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;28;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;38;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;183;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;153;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;4180;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;10119;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;4190;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;124;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;74;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;240;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;156;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;47;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;297;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;232;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;5;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;961;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;1722;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;766;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;24;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;51028;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;98626;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;33438;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2014;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;15;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;1387;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;4300;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;2624;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;57;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;24414;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;28187;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;10661;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;262;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;1547;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;1542;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;407;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;26;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;905;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;1329;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;467;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;15;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;567;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;987;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;568;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;21;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;1099;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;2520;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;1500;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;41;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;1645;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;3709;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;1489;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;76;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1225;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;7760;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;6427;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;124;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;723;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;6928;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;7184;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;184;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;1120;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;11466;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;12553;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;306;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;5;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;1876;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;1967;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;1232;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;52;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;3899;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;8853;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;3399;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;274;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;89;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;455;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;377;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;41;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;10;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;72;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;48;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;272;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;562;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;259;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;10;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;4259;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;16946;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;12169;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;625;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;21;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;5;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;7;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;8;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;137;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;552;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;285;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;11;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;3;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;5;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;43;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;23;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;9;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;21;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;17;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;64;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;225;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;118;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;4;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;14;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;3;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;22;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;66;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;44;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;4;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;4;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;7;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;4;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;14;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;7;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;22;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;104;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;125;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;4;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;30;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;149;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;118;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;3;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;27;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;128;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;122;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;4;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;44;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;18;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;13;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;9;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;23;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;18;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;6;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;31;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;19;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;19;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;98;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;86;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;19;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;11;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;10;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;18;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;35;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;38;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;56;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;319;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;204;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;4;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;20;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;240;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;122;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;4;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;12926;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;57235;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;23953;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;360;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;4;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;21;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;384;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;160;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;17;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;128;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;84;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;238;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;963;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;562;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;33;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;695;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2807;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1014;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;24;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;35;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;221;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;156;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;4;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;276;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;809;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;337;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;6;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;74;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;280;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;140;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;8;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;3;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;19;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;8;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;14;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;77;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;85;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;3;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;168;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;529;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;224;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;17;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;63;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;188;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;84;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;23;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;205;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;160;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;4;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;14;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;127;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;151;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;3;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;22;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;97;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;115;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;7;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;33;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;184;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;101;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;8;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;245;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;1393;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;567;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;52;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;20;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;54;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;41;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;7;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;5;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;29;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;130;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;78;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;34;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;135;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;61;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;23;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;611;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;382;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;11;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;12220;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;48168;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;18922;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;219;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;6;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;35;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;433;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;201;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;8;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;22;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;117;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;55;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;53;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;262;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;228;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;11;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;468;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1504;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;534;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;5;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;121;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;1213;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;716;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;16;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;81;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;179;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;82;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;31;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;90;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;47;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;3;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;6;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;12;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;4;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;9;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;52;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;53;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;4;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;61;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;171;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;62;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;6;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;71;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;199;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;73;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;12;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;67;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;78;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;6;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;46;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;80;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;10;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;125;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;94;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;19;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;44;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;22;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;84;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;387;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;226;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;15;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;13;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;10;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;3;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;21;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;93;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;54;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;1581;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;5912;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;3858;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;157;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;11;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;47;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;531;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;448;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;9;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;7772;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;27960;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;14878;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;318;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;38;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;483;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;443;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;3;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;639;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;3711;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2137;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;21;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;452;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;1694;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;1209;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;69;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3057;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;8151;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;4681;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;289;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;334;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;1908;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;1685;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;58;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;2035;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;7165;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;5217;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;225;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;80;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;307;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;298;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;30;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;91;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;311;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;443;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;70;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;89;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;552;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;562;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;37;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;227;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;853;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;905;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;84;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;1027;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;4108;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;2890;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;131;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;1693;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;8503;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;7419;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;118;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;348;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;5388;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;7541;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;176;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;294;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;2629;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;3192;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;88;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;139;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;595;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;826;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;69;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;456;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;1741;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;1421;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;127;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;153;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;507;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;306;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;33;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;4;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;13;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;67;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;65;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;66;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;275;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;176;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;350;;
+Bulgaria;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;502;;
+Bulgaria;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;239;;
+Bulgaria;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;13;;
+Bulgaria;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;6;;
+Bulgaria;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;17;;
+Bulgaria;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;7;;
+Bulgaria;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;1257;;
+Bulgaria;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;2482;;
+Bulgaria;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;677;;
+Bulgaria;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;17;;
+Bulgaria;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;13;;
+Bulgaria;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;23;;
+Bulgaria;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;12;;
+Bulgaria;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;52;;
+Bulgaria;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;160;;
+Bulgaria;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;60;;
+Bulgaria;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;;
+Bulgaria;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;227;;
+Bulgaria;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;291;;
+Bulgaria;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;104;;
+Bulgaria;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;4;;
+Bulgaria;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2017;;
+Bulgaria;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2377;;
+Bulgaria;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;705;;
+Bulgaria;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;37;;
+Bulgaria;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;134;;
+Bulgaria;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;249;;
+Bulgaria;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;122;;
+Bulgaria;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;1661;;
+Bulgaria;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;1164;;
+Bulgaria;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;416;;
+Bulgaria;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;20;;
+Bulgaria;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;175;;
+Bulgaria;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;180;;
+Bulgaria;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;43;;
+Bulgaria;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;:;c;
+Bulgaria;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;160;;
+Bulgaria;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;193;;
+Bulgaria;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;44;;
+Bulgaria;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;5;;
+Bulgaria;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;85;;
+Bulgaria;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;139;;
+Bulgaria;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;71;;
+Bulgaria;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;4;;
+Bulgaria;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;267;;
+Bulgaria;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;463;;
+Bulgaria;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;164;;
+Bulgaria;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;9;;
+Bulgaria;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;259;;
+Bulgaria;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;284;;
+Bulgaria;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;111;;
+Bulgaria;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;8;;
+Bulgaria;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;115;;
+Bulgaria;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;455;;
+Bulgaria;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;217;;
+Bulgaria;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;17;;
+Bulgaria;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;99;;
+Bulgaria;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;373;;
+Bulgaria;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;283;;
+Bulgaria;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;16;;
+Bulgaria;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;101;;
+Bulgaria;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;549;;
+Bulgaria;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;338;;
+Bulgaria;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;14;;
+Bulgaria;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;241;;
+Bulgaria;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;186;;
+Bulgaria;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;40;;
+Bulgaria;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;7;;
+Bulgaria;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;214;;
+Bulgaria;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;365;;
+Bulgaria;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;116;;
+Bulgaria;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;11;;
+Bulgaria;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;12;;
+Bulgaria;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;10;;
+Bulgaria;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Bulgaria;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;10;;
+Bulgaria;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Bulgaria;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;2977;;
+Bulgaria;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;5846;;
+Bulgaria;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;3410;;
+Bulgaria;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;179;;
+Bulgaria;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;:;c;
+Bulgaria;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;376698;;
+Bulgaria;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;210168;;
+Bulgaria;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;301567;;
+Bulgaria;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;487572;;
+Bulgaria;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;36240;;
+Bulgaria;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;501718;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;18;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;9;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;5;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;16;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;44;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;15;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;7;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;19;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;31;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;11;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;30;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;38;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;11;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;46;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;140;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;21;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;16;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;8;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;9;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;4;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;27;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;11;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;5;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;5;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;6;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;255;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;886;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;60;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;3;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;685;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;3236;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;369;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;10;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;7012;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;18532;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;1409;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;57;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;34;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;308;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;57;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;54;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;12;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;35;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;114;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;15;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;367;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;1440;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;109;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;8;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;133;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;482;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;34;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;31;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;134;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;32;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;337;;
+Bulgaria;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;2903;;
+Bulgaria;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;1952;;
+Bulgaria;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;326;;
+Bulgaria;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;27;;
+Bulgaria;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;609;;
+Bulgaria;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;439;;
+Bulgaria;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;44;;
+Bulgaria;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;1539;;
+Bulgaria;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;14949;;
+Bulgaria;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;9998;;
+Bulgaria;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;898;;
+Bulgaria;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;60;;
+Bulgaria;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1086;;
+Bulgaria;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;817;;
+Bulgaria;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;36;;
+Bulgaria;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;41;;
+Bulgaria;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;605;;
+Bulgaria;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;549;;
+Bulgaria;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;24;;
+Bulgaria;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;1160;;
+Bulgaria;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;8263;;
+Bulgaria;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;5472;;
+Bulgaria;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;490;;
+Bulgaria;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;4411;;
+Bulgaria;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;32052;;
+Bulgaria;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;13282;;
+Bulgaria;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1156;;
+Bulgaria;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;4;;
+Bulgaria;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;618;;
+Bulgaria;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;5627;;
+Bulgaria;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;3138;;
+Bulgaria;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;158;;
+Bulgaria;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;1040;;
+Bulgaria;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;6209;;
+Bulgaria;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;2852;;
+Bulgaria;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;202;;
+Bulgaria;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;841;;
+Bulgaria;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;3605;;
+Bulgaria;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;960;;
+Bulgaria;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;81;;
+Bulgaria;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;405;;
+Bulgaria;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;3167;;
+Bulgaria;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;925;;
+Bulgaria;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;64;;
+Bulgaria;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;288;;
+Bulgaria;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;2027;;
+Bulgaria;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;1197;;
+Bulgaria;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;131;;
+Bulgaria;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;677;;
+Bulgaria;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;4335;;
+Bulgaria;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;2527;;
+Bulgaria;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;341;;
+Bulgaria;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;336;;
+Bulgaria;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;1852;;
+Bulgaria;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;1161;;
+Bulgaria;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;134;;
+Bulgaria;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;124;;
+Bulgaria;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;3518;;
+Bulgaria;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;3385;;
+Bulgaria;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;325;;
+Bulgaria;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Education ;Y15-29;2011;67;;
+Bulgaria;M;POP;TOTAL;Managers;Education ;Y30-49;2011;814;;
+Bulgaria;M;POP;TOTAL;Managers;Education ;Y50-64;2011;1496;;
+Bulgaria;M;POP;TOTAL;Managers;Education ;Y65-84;2011;162;;
+Bulgaria;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;36;;
+Bulgaria;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;654;;
+Bulgaria;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;869;;
+Bulgaria;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;110;;
+Bulgaria;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;261;;
+Bulgaria;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;1312;;
+Bulgaria;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;727;;
+Bulgaria;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;84;;
+Bulgaria;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;300;;
+Bulgaria;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;2107;;
+Bulgaria;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;1410;;
+Bulgaria;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;292;;
+Bulgaria;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;7;;
+Bulgaria;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;26;;
+Bulgaria;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;19;;
+Bulgaria;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;7;;
+Bulgaria;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Bulgaria;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;29;;
+Bulgaria;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;15;;
+Bulgaria;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;34;;
+Bulgaria;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;123;;
+Bulgaria;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;67;;
+Bulgaria;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;285;;
+Bulgaria;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;1104;;
+Bulgaria;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;672;;
+Bulgaria;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;89;;
+Bulgaria;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;81;;
+Bulgaria;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;369;;
+Bulgaria;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;222;;
+Bulgaria;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;22;;
+Bulgaria;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;2020;;
+Bulgaria;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;6294;;
+Bulgaria;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;3287;;
+Bulgaria;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;221;;
+Bulgaria;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;317;;
+Bulgaria;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1596;;
+Bulgaria;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;851;;
+Bulgaria;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;24;;
+Bulgaria;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;60;;
+Bulgaria;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;326;;
+Bulgaria;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;255;;
+Bulgaria;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;14;;
+Bulgaria;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;978;;
+Bulgaria;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;2501;;
+Bulgaria;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;1655;;
+Bulgaria;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;221;;
+Bulgaria;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2116;;
+Bulgaria;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;5227;;
+Bulgaria;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1588;;
+Bulgaria;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;192;;
+Bulgaria;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;389;;
+Bulgaria;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;1746;;
+Bulgaria;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;1190;;
+Bulgaria;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;64;;
+Bulgaria;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;3;;
+Bulgaria;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;364;;
+Bulgaria;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;751;;
+Bulgaria;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;288;;
+Bulgaria;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;11;;
+Bulgaria;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;6393;;
+Bulgaria;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;7597;;
+Bulgaria;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;1419;;
+Bulgaria;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;91;;
+Bulgaria;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;1306;;
+Bulgaria;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;2606;;
+Bulgaria;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;838;;
+Bulgaria;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;73;;
+Bulgaria;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;3;;
+Bulgaria;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;167;;
+Bulgaria;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;515;;
+Bulgaria;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;258;;
+Bulgaria;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;27;;
+Bulgaria;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;3247;;
+Bulgaria;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;8918;;
+Bulgaria;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;5007;;
+Bulgaria;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;791;;
+Bulgaria;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;8;;
+Bulgaria;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;566;;
+Bulgaria;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;1434;;
+Bulgaria;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;683;;
+Bulgaria;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;81;;
+Bulgaria;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1459;;
+Bulgaria;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;8948;;
+Bulgaria;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;5472;;
+Bulgaria;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;277;;
+Bulgaria;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;4;;
+Bulgaria;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;1296;;
+Bulgaria;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;8334;;
+Bulgaria;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;10037;;
+Bulgaria;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;1173;;
+Bulgaria;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;3;;
+Bulgaria;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;1065;;
+Bulgaria;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;7489;;
+Bulgaria;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;5946;;
+Bulgaria;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;1324;;
+Bulgaria;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;13;;
+Bulgaria;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;931;;
+Bulgaria;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;2459;;
+Bulgaria;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;1704;;
+Bulgaria;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;223;;
+Bulgaria;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;3;;
+Bulgaria;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;615;;
+Bulgaria;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;1945;;
+Bulgaria;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;1304;;
+Bulgaria;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;271;;
+Bulgaria;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;6;;
+Bulgaria;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;5;;
+Bulgaria;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;4;;
+Bulgaria;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;7;;
+Bulgaria;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;11;;
+Bulgaria;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;88;;
+Bulgaria;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;53;;
+Bulgaria;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;11;;
+Bulgaria;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;60;;
+Bulgaria;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;157;;
+Bulgaria;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;91;;
+Bulgaria;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;8;;
+Bulgaria;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;242;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;858;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;663;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;45;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;95;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;722;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;387;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;22;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;3893;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;11196;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;5976;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;280;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;551;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;3452;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1995;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;31;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;200;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1179;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1243;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;22;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;1817;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;4612;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;3466;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;261;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3936;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;7939;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2017;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;113;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;1065;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;5543;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;3675;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;74;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;423;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;807;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;342;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;17;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;3372;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;4754;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;1270;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;61;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;1437;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;2089;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;521;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;40;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;323;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;746;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;413;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;29;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;1474;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;2270;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;1284;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;160;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;788;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;1375;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;653;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;41;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;860;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;3607;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;2719;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;147;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;187;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;389;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;444;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;44;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;220;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;680;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;615;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;64;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;1904;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;2167;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;1089;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;108;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;749;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;1867;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;1110;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;135;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;5;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;8;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;8;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;65;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;30;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;46;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;112;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;71;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;3;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;137;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;446;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;488;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;41;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;38;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;129;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;92;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;4;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;1671;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;4172;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;2004;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;124;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;101;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;329;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;249;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;11;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;104;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;591;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;583;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;20;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;875;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;1846;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;1111;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;106;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;4889;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;8591;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2416;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;167;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;1298;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;2708;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;1740;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;81;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;3;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;1262;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;1130;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;400;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;23;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;1941;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;1315;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;309;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;26;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;1442;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;1859;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;486;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;48;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;325;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;630;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;340;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;47;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;1381;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;1945;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;814;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;64;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;3;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;1216;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;1544;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;853;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;111;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;640;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;3679;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;2836;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;182;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;172;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;509;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;692;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;71;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;161;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;364;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;445;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;37;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;1388;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;1182;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;471;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;75;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;519;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;883;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;508;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;78;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;5;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;14;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;16;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;83;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;37;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;4;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;44;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;85;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;41;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;682;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;2895;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;3824;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;309;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;125;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;471;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;535;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;47;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;2878;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;7061;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;6532;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;775;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;142;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;354;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;235;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;32;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;102;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;542;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;775;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;81;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;1371;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;2756;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;3001;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;429;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;29050;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;43315;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;14900;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1619;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;11;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;1466;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;5421;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;3461;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;219;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;16769;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;14873;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;3695;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;225;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;772;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;508;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;205;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;44;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;502;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;1263;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;974;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;48;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;560;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;842;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;901;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;182;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;729;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;1319;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;748;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;131;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;8825;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;22973;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;20657;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;3287;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;2918;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;17773;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;5230;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;318;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;299;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;1342;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;2134;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;254;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;332;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;1501;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;1770;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;149;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;1697;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;1783;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;751;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;91;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;1757;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;3428;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;1863;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;311;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;23;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;72;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;56;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;8;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;101;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;573;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;116;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;8;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;199;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;392;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;163;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;17;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;8320;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;27609;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;18434;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;977;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;12;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;16;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;46;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;21;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;272;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;854;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;427;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;11;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;4;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;6;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;12;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;13;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;33;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;18;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;102;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;220;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;87;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;179;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;501;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;244;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;10;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;22;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;79;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;43;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;46;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;97;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;77;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;3;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;9;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;4;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;3;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;9;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;7;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;7;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;32;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;25;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;20;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;62;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;85;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;5;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;97;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;270;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;228;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;20;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;34;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;197;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;161;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;4;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;9;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;28;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;66;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;7;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;c;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;9;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;15;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;19;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;60;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;35;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;24;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;67;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;77;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;7;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;56;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;200;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;158;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;24;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;4;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;18;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;13;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;11;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;87;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;35;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;282;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;1489;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;1587;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;66;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;578;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;2865;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;1450;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;21;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;18495;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;53384;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;30246;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;860;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;835;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;5804;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3367;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;25;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;438;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2848;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2573;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;32;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;18427;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;52464;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;25145;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;495;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;5;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;6700;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;15106;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;4762;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;179;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;1059;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;5163;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;3830;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;70;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;569;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;1216;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;721;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;24;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;693;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;1151;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;344;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;11;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;17;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;59;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;34;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;3;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;82;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;375;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;451;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;31;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;503;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;1344;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;719;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;72;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;414;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;908;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;661;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;27;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;211;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;930;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;1176;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;41;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;30;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;381;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;826;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;104;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;34;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;271;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;577;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;32;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;172;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;624;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;482;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;35;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;589;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;2117;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;1484;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;235;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;5;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;27;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;79;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;25;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;13;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;26;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;22;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;4;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;141;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;568;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;322;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;3;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;1691;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;8756;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;5647;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;126;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;966;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;6223;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;2774;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;51;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;16237;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;43639;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;21148;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;532;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;334;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2179;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1348;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;26;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;405;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2933;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2690;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;50;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;4238;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;15237;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;9786;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;260;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;7148;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;19033;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5639;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;124;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;6468;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;42743;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;20016;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;335;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;534;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;1029;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;558;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;18;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;442;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;798;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;288;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;14;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;66;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;250;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;160;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;4;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;133;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;405;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;289;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;13;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;367;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;1056;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;638;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;50;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;542;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;1662;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;1074;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;25;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;461;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;2460;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;2187;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;80;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;61;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;861;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;1776;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;154;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;139;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;1947;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;2300;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;100;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;163;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;473;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;294;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;24;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;461;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;1126;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;673;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;53;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;19;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;32;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;16;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;4;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;10;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;72;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;53;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;4;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;89;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;380;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;202;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;3;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;3957;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;9346;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;5910;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;241;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;4;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;544;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;2192;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;1027;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;33;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;12489;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;21016;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;9505;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;345;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;199;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;626;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;414;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;6;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1836;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;4292;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2319;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;56;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;11057;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;21618;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;9031;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;227;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;10930;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;13896;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;4302;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;281;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;1804;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;5312;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;2890;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;102;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;1878;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;1938;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;853;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;52;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;287;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;334;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;111;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;19;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;51;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;84;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;43;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;3;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;191;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;450;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;487;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;74;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;419;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;581;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;335;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;29;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;1688;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;2626;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;1793;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;97;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;1911;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;6263;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;6221;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;100;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;109;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;619;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;1185;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;197;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;116;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;447;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;624;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;55;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;314;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;515;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;385;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;42;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;1001;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;1350;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;590;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;46;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;175;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;316;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;146;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;18;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;19;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;45;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;33;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;146;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;378;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;174;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;3;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;337;;
+Bulgaria;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;595;;
+Bulgaria;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;257;;
+Bulgaria;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;12;;
+Bulgaria;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;29;;
+Bulgaria;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;99;;
+Bulgaria;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;34;;
+Bulgaria;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;4;;
+Bulgaria;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;1343;;
+Bulgaria;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;2044;;
+Bulgaria;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;640;;
+Bulgaria;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;27;;
+Bulgaria;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;23;;
+Bulgaria;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;64;;
+Bulgaria;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;31;;
+Bulgaria;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;108;;
+Bulgaria;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;201;;
+Bulgaria;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;82;;
+Bulgaria;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;1734;;
+Bulgaria;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;2903;;
+Bulgaria;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;881;;
+Bulgaria;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;32;;
+Bulgaria;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2062;;
+Bulgaria;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2861;;
+Bulgaria;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;544;;
+Bulgaria;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;43;;
+Bulgaria;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;277;;
+Bulgaria;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;1172;;
+Bulgaria;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;425;;
+Bulgaria;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;10;;
+Bulgaria;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;1099;;
+Bulgaria;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;921;;
+Bulgaria;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;199;;
+Bulgaria;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;6;;
+Bulgaria;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;249;;
+Bulgaria;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;241;;
+Bulgaria;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;27;;
+Bulgaria;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;3;;
+Bulgaria;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;96;;
+Bulgaria;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;114;;
+Bulgaria;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;30;;
+Bulgaria;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;85;;
+Bulgaria;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;153;;
+Bulgaria;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;77;;
+Bulgaria;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;7;;
+Bulgaria;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;216;;
+Bulgaria;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;347;;
+Bulgaria;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;131;;
+Bulgaria;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;12;;
+Bulgaria;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;423;;
+Bulgaria;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;565;;
+Bulgaria;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;272;;
+Bulgaria;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;45;;
+Bulgaria;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;64;;
+Bulgaria;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;233;;
+Bulgaria;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;154;;
+Bulgaria;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;6;;
+Bulgaria;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;51;;
+Bulgaria;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;93;;
+Bulgaria;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;92;;
+Bulgaria;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;13;;
+Bulgaria;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;36;;
+Bulgaria;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;148;;
+Bulgaria;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;85;;
+Bulgaria;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;9;;
+Bulgaria;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;237;;
+Bulgaria;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;215;;
+Bulgaria;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;82;;
+Bulgaria;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;8;;
+Bulgaria;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;204;;
+Bulgaria;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;286;;
+Bulgaria;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;126;;
+Bulgaria;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;15;;
+Bulgaria;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;3;;
+Bulgaria;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;10;;
+Bulgaria;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Bulgaria;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Bulgaria;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;6;;
+Bulgaria;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Bulgaria;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Bulgaria;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Bulgaria;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;4853;;
+Bulgaria;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;8552;;
+Bulgaria;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;4067;;
+Bulgaria;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;251;;
+Bulgaria;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;:;c;
+Bulgaria;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;50457;;
+Cyprus;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;25882;;
+Cyprus;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;37541;;
+Cyprus;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;52638;;
+Cyprus;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;6413;;
+Cyprus;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;65787;;
+Cyprus;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;28;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;517;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;14;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;16;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;4;;
+Cyprus;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;11;;
+Cyprus;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;61;;
+Cyprus;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;53;;
+Cyprus;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;4;;
+Cyprus;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;3;;
+Cyprus;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3;;
+Cyprus;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;13;;
+Cyprus;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;60;;
+Cyprus;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;31;;
+Cyprus;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;46;;
+Cyprus;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;266;;
+Cyprus;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;125;;
+Cyprus;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;10;;
+Cyprus;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;9;;
+Cyprus;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;99;;
+Cyprus;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;33;;
+Cyprus;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;31;;
+Cyprus;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;212;;
+Cyprus;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;101;;
+Cyprus;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;3;;
+Cyprus;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;10;;
+Cyprus;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;74;;
+Cyprus;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;19;;
+Cyprus;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;14;;
+Cyprus;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;306;;
+Cyprus;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;183;;
+Cyprus;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;4;;
+Cyprus;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;9;;
+Cyprus;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;5;;
+Cyprus;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;17;;
+Cyprus;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;114;;
+Cyprus;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;40;;
+Cyprus;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;3;;
+Cyprus;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;59;;
+Cyprus;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;34;;
+Cyprus;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;34;;
+Cyprus;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;107;;
+Cyprus;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Education ;Y15-29;2011;8;;
+Cyprus;F;POP;TOTAL;Managers;Education ;Y30-49;2011;123;;
+Cyprus;F;POP;TOTAL;Managers;Education ;Y50-64;2011;202;;
+Cyprus;F;POP;TOTAL;Managers;Education ;Y65-84;2011;3;;
+Cyprus;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;18;;
+Cyprus;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;41;;
+Cyprus;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;47;;
+Cyprus;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;3;;
+Cyprus;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;5;;
+Cyprus;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;23;;
+Cyprus;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;16;;
+Cyprus;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;12;;
+Cyprus;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;11;;
+Cyprus;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;11;;
+Cyprus;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;;
+Cyprus;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;9;;
+Cyprus;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;52;;
+Cyprus;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;22;;
+Cyprus;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;4;;
+Cyprus;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;7;;
+Cyprus;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;5;;
+Cyprus;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;3;;
+Cyprus;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;188;;
+Cyprus;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;229;;
+Cyprus;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;51;;
+Cyprus;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;7;;
+Cyprus;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;34;;
+Cyprus;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;8;;
+Cyprus;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;15;;
+Cyprus;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;22;;
+Cyprus;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3;;
+Cyprus;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;164;;
+Cyprus;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;254;;
+Cyprus;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;52;;
+Cyprus;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;342;;
+Cyprus;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;695;;
+Cyprus;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;185;;
+Cyprus;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4;;
+Cyprus;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;77;;
+Cyprus;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;175;;
+Cyprus;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;49;;
+Cyprus;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;137;;
+Cyprus;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;176;;
+Cyprus;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;38;;
+Cyprus;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;473;;
+Cyprus;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;817;;
+Cyprus;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;153;;
+Cyprus;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;5;;
+Cyprus;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;192;;
+Cyprus;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;600;;
+Cyprus;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;74;;
+Cyprus;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;3;;
+Cyprus;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;5;;
+Cyprus;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;17;;
+Cyprus;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;3;;
+Cyprus;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;1907;;
+Cyprus;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;2635;;
+Cyprus;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;521;;
+Cyprus;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;22;;
+Cyprus;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;30;;
+Cyprus;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;40;;
+Cyprus;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;5;;
+Cyprus;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;345;;
+Cyprus;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;1497;;
+Cyprus;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;465;;
+Cyprus;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;4389;;
+Cyprus;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;9559;;
+Cyprus;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;2364;;
+Cyprus;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;52;;
+Cyprus;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;1609;;
+Cyprus;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;2874;;
+Cyprus;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;1273;;
+Cyprus;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;20;;
+Cyprus;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;126;;
+Cyprus;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;232;;
+Cyprus;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;87;;
+Cyprus;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;18;;
+Cyprus;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;66;;
+Cyprus;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;105;;
+Cyprus;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;24;;
+Cyprus;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;4;;
+Cyprus;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;25;;
+Cyprus;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;114;;
+Cyprus;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;47;;
+Cyprus;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;95;;
+Cyprus;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;171;;
+Cyprus;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;26;;
+Cyprus;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;11;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;22;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;19;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;3;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;14;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;168;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;463;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;344;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;9;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;5;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;82;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;25;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;26;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;49;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;23;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;177;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;454;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;314;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;8;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;608;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1569;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;763;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;18;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;222;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;579;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;273;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;4;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;94;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;238;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;92;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;141;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;360;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;105;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;596;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;2724;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;774;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;5;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;:;c;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;69;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;236;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;113;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;10;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;1715;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;1626;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;779;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;20;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;78;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;199;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;86;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;3;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;260;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;1490;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;1197;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;3;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;53;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;190;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;150;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;383;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;979;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;715;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;9;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;193;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;253;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;50;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;67;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;221;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;136;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;58;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;15;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;11;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;89;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;53;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;110;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;247;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;129;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;17;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;79;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;17;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;7;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;28;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;401;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;1039;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;252;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;13;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;115;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;9;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;36;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;82;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;12;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;447;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;1042;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;155;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;3;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1343;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;3016;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;699;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;9;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;622;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;1462;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;248;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;7;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;438;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;997;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;214;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;4;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;397;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;663;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;77;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;:;c;
+Cyprus;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;1148;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;3269;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;405;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;4;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;124;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;201;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;33;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;1489;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;2326;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;267;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;6;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;330;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;999;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;322;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;7;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1063;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;2485;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;499;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;3;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;412;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;728;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;126;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;3;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;342;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;589;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;163;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;6;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;343;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;374;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;83;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;3;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;143;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;279;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;76;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;26;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;162;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;42;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;259;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;623;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;93;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;6;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;13;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;4;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;81;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;205;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;86;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;5;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;6;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;22;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;5;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;6037;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;11221;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;4621;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;196;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;318;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;563;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;105;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;3089;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;4630;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;1776;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;49;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Cyprus;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;105;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;80;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;13;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;18;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;23;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;13;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;5;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;10;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;9;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;23;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;42;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;22;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;44;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;235;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;129;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;11;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;457;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;766;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;118;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;240;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;1089;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;525;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;10;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;202;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;982;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;855;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;16;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;185;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;136;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;43;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;2000;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;2852;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;564;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;19;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;47;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;145;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;63;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;5;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;16;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;87;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;28;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;26;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;62;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;23;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;26;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;267;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;270;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;34;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;3;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;6;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;6;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;5;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;5;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;17;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;5;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;5;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;10;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;6;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;308;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;1153;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;1047;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;41;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;4;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;63;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;84;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;19;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;76;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;277;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;150;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;7;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;5;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;31;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;78;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;24;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;9;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;48;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;17;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;4;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;11;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;43;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;11;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;3;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;5;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;8;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;26;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;31;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;3;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;3;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;7;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;3;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;8;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;12;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;5;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;30;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;56;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;10;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;5;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;10;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;6;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;146;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;892;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;856;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;16;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;6;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;6;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;4;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;3;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;51;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;183;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;116;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;3;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;19;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;116;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;45;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;10;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;39;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;45;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;8;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;26;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;8;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;3;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;27;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;23;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;5;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;6;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;4;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;52;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;25;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;13;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;39;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;5;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;5;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;27;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;147;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;115;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;6;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;5;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;10;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;11;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;268;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;515;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;299;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;22;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;6;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;6;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;145;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;487;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;361;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;10;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;18;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;22;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;7;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;45;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;44;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;49;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;146;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;122;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;4;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;341;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1050;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;686;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;13;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;37;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;150;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;136;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;972;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;3268;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;2590;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;48;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;13;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;79;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;84;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;31;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;215;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;344;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;6;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;12;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;15;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;23;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;142;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;148;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;5;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;97;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;434;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;310;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;13;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;14;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;460;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;672;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;31;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;627;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;695;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;12;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;28;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;488;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;664;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;12;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;31;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;104;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;85;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;23;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;103;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;97;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;5;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;4930;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;16561;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1802;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;57;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;4;;
+Cyprus;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;6;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;104;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;118;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;15;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;48;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;63;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;7;;
+Cyprus;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;39;;
+Cyprus;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;12;;
+Cyprus;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;3;;
+Cyprus;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;3;;
+Cyprus;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;7;;
+Cyprus;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;4;;
+Cyprus;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;9;;
+Cyprus;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;45;;
+Cyprus;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;18;;
+Cyprus;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;14;;
+Cyprus;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;49;;
+Cyprus;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;13;;
+Cyprus;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;22;;
+Cyprus;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;77;;
+Cyprus;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;38;;
+Cyprus;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;10;;
+Cyprus;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;23;;
+Cyprus;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;3;;
+Cyprus;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;15;;
+Cyprus;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;6;;
+Cyprus;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;9;;
+Cyprus;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;20;;
+Cyprus;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;6;;
+Cyprus;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;8;;
+Cyprus;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;3;;
+Cyprus;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;10;;
+Cyprus;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;57;;
+Cyprus;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;9;;
+Cyprus;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;6;;
+Cyprus;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;10;;
+Cyprus;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;3;;
+Cyprus;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;3;;
+Cyprus;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;15;;
+Cyprus;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;9;;
+Cyprus;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;5;;
+Cyprus;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;6;;
+Cyprus;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;3;;
+Cyprus;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;5;;
+Cyprus;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;5;;
+Cyprus;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;5;;
+Cyprus;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;33;;
+Cyprus;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;6;;
+Cyprus;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;233;;
+Cyprus;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;522;;
+Cyprus;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;124;;
+Cyprus;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;17;;
+Cyprus;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;:;c;
+Cyprus;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;54109;;
+Cyprus;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;7573;;
+Cyprus;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;16397;;
+Cyprus;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;43848;;
+Cyprus;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;4247;;
+Cyprus;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;69161;;
+Cyprus;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;5;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;:;c;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;550;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;2671;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;238;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;43;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;205;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;8;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;7;;
+Cyprus;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;38;;
+Cyprus;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;19;;
+Cyprus;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;7;;
+Cyprus;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;15;;
+Cyprus;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;11;;
+Cyprus;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;42;;
+Cyprus;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;490;;
+Cyprus;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;447;;
+Cyprus;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;61;;
+Cyprus;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;9;;
+Cyprus;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;30;;
+Cyprus;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;24;;
+Cyprus;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;25;;
+Cyprus;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;31;;
+Cyprus;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;438;;
+Cyprus;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;321;;
+Cyprus;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;43;;
+Cyprus;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;130;;
+Cyprus;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1160;;
+Cyprus;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;723;;
+Cyprus;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;99;;
+Cyprus;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;4;;
+Cyprus;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;16;;
+Cyprus;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;332;;
+Cyprus;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;231;;
+Cyprus;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;25;;
+Cyprus;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;103;;
+Cyprus;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;871;;
+Cyprus;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;586;;
+Cyprus;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;38;;
+Cyprus;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;9;;
+Cyprus;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;270;;
+Cyprus;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;112;;
+Cyprus;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;16;;
+Cyprus;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;639;;
+Cyprus;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;564;;
+Cyprus;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;18;;
+Cyprus;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;22;;
+Cyprus;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;22;;
+Cyprus;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;19;;
+Cyprus;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;271;;
+Cyprus;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;108;;
+Cyprus;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;14;;
+Cyprus;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;6;;
+Cyprus;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;112;;
+Cyprus;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;67;;
+Cyprus;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;5;;
+Cyprus;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;100;;
+Cyprus;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;346;;
+Cyprus;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;38;;
+Cyprus;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Education ;Y15-29;2011;3;;
+Cyprus;M;POP;TOTAL;Managers;Education ;Y30-49;2011;82;;
+Cyprus;M;POP;TOTAL;Managers;Education ;Y50-64;2011;141;;
+Cyprus;M;POP;TOTAL;Managers;Education ;Y65-84;2011;13;;
+Cyprus;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;6;;
+Cyprus;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;35;;
+Cyprus;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;43;;
+Cyprus;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;5;;
+Cyprus;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;14;;
+Cyprus;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;67;;
+Cyprus;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;43;;
+Cyprus;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;5;;
+Cyprus;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;8;;
+Cyprus;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;44;;
+Cyprus;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;33;;
+Cyprus;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;5;;
+Cyprus;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;13;;
+Cyprus;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;20;;
+Cyprus;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;13;;
+Cyprus;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;109;;
+Cyprus;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;66;;
+Cyprus;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;8;;
+Cyprus;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;21;;
+Cyprus;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;25;;
+Cyprus;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;20;;
+Cyprus;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;5;;
+Cyprus;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;14;;
+Cyprus;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;11;;
+Cyprus;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;17;;
+Cyprus;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;210;;
+Cyprus;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;385;;
+Cyprus;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;185;;
+Cyprus;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;5;;
+Cyprus;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;21;;
+Cyprus;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;199;;
+Cyprus;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;94;;
+Cyprus;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;24;;
+Cyprus;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;49;;
+Cyprus;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;20;;
+Cyprus;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;492;;
+Cyprus;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;952;;
+Cyprus;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;590;;
+Cyprus;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;29;;
+Cyprus;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;409;;
+Cyprus;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;903;;
+Cyprus;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;384;;
+Cyprus;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;36;;
+Cyprus;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;84;;
+Cyprus;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;368;;
+Cyprus;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;248;;
+Cyprus;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;5;;
+Cyprus;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;116;;
+Cyprus;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;247;;
+Cyprus;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;124;;
+Cyprus;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;5;;
+Cyprus;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;761;;
+Cyprus;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;1702;;
+Cyprus;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;397;;
+Cyprus;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;22;;
+Cyprus;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;202;;
+Cyprus;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;806;;
+Cyprus;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;162;;
+Cyprus;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;12;;
+Cyprus;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;6;;
+Cyprus;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;29;;
+Cyprus;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;11;;
+Cyprus;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;1219;;
+Cyprus;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;3541;;
+Cyprus;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;1610;;
+Cyprus;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;264;;
+Cyprus;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;25;;
+Cyprus;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;65;;
+Cyprus;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;20;;
+Cyprus;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;168;;
+Cyprus;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;1116;;
+Cyprus;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;634;;
+Cyprus;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;14;;
+Cyprus;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;735;;
+Cyprus;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;3815;;
+Cyprus;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;1454;;
+Cyprus;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;69;;
+Cyprus;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;601;;
+Cyprus;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;1522;;
+Cyprus;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;1074;;
+Cyprus;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;147;;
+Cyprus;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;90;;
+Cyprus;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;319;;
+Cyprus;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;151;;
+Cyprus;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;21;;
+Cyprus;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;101;;
+Cyprus;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;403;;
+Cyprus;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;227;;
+Cyprus;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;112;;
+Cyprus;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;11;;
+Cyprus;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;17;;
+Cyprus;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;137;;
+Cyprus;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;71;;
+Cyprus;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;5;;
+Cyprus;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;112;;
+Cyprus;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;240;;
+Cyprus;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;89;;
+Cyprus;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;6;;
+Cyprus;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;21;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;64;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;53;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;5;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;32;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;33;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;318;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;895;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;586;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;24;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;37;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;241;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;120;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;34;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;98;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;82;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;340;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;2108;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;1796;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;63;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;893;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2680;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1421;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;121;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;204;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;872;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;484;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;27;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;89;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;270;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;136;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;345;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;812;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;311;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;4;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;413;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;2191;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;979;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;55;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;116;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;475;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;292;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;30;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;918;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;658;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;456;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;53;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;56;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;150;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;80;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;13;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;159;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;1233;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;1281;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;35;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;116;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;50;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;131;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;155;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;115;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;5;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;634;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;641;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;124;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;7;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;111;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;306;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;159;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;21;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;5;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;8;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;92;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;55;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;62;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;166;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;87;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;10;;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;9;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;7;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;5;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;3;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;9;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;4;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;170;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;285;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;156;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;8;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;16;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;127;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;25;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;9;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;44;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;14;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;73;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;107;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;105;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;8;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;778;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1004;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;466;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;31;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;375;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;705;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;236;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;5;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;193;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;354;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;268;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;29;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;145;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;196;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;53;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;4;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;362;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;1252;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;340;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;5;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;12;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;18;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;8;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;200;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;210;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;34;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;7;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;125;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;319;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;198;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;21;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;300;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;593;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;281;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;29;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;51;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;12;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;31;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;71;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;61;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;188;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;403;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;162;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;10;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;41;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;78;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;37;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;4;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;15;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;93;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;48;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;56;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;89;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;30;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;129;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;238;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;167;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;:;c;
+Cyprus;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;62;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;132;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;103;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;4;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;6;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;13;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;5;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;4;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;11;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;9;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;22;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;62;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;40;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;4;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2634;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;5392;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3087;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;393;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;10;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;184;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;347;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;136;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;2873;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;4399;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;1987;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;116;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;52;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;62;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;23;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;13;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;43;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;24;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;8;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;30;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;29;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;17;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;30;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;12;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;193;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;404;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;291;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;25;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;834;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;3292;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;726;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;68;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;128;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;127;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;11;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;31;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;97;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;100;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;91;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;166;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;91;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;410;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;473;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;231;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;56;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;4;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;21;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;5;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;39;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;316;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;100;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;31;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;74;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;31;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;272;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;1301;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;1753;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;241;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;11;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;18;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;5;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;3;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;3;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;21;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;46;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;32;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;30;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;78;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;114;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;8;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;3;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;4;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;129;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;272;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;201;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;9;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;5;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;5;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;3;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;23;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;40;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;16;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;9;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;4;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;22;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;34;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;7;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;4;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;8;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;6;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;:;c;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;19;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;46;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;40;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;15;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;32;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;40;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;2485;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;5900;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;3791;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;193;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;3;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;81;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;360;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;71;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;33;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;172;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;98;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;6224;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;14094;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;7054;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;129;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2097;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;3583;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1976;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;125;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;61;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;120;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;88;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;118;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;228;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;163;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;109;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;326;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;166;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;12;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;29;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;17;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;6;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;7;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;c;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;71;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;120;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;50;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;4;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;39;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;62;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;18;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;46;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;486;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;370;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;11;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;26;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;27;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;11;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;44;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;36;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;37;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;108;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;68;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;170;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;411;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;182;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;27;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;60;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;108;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;99;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;83;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;145;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;84;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;34;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;63;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;39;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;59;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;114;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;87;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;888;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;1879;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;1142;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;25;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;26;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;14;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;55;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;188;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;135;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;496;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;1278;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;693;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;25;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1001;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1678;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;909;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;38;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;693;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;2512;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;1982;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;111;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;292;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;193;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;28;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;7;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;9;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;10;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;11;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;33;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;7;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;5;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;21;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;26;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;32;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;33;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;86;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;67;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;13;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;96;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;83;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;4;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;8;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;25;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;12;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;86;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;83;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;21;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;49;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;30;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;36;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;127;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;97;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;18;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;3;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;16;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;6;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;89;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;70;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;108;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;230;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;95;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;1247;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;1023;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;206;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;9;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;9;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;20;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;9;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;385;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;445;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;181;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;8;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;17;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;79;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;27;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;241;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;444;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;288;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;5;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;1968;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;2219;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;1022;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;22;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;742;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;711;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;336;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;40;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;398;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;494;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;277;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;8;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;746;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;654;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;424;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;28;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;24;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;24;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;30;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;40;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;84;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;32;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;4;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;7;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;16;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;8;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;69;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;131;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;65;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;9;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;232;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;300;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;175;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;156;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;651;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;355;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;8;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;24;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;13;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;16;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;119;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;109;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;104;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;139;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;84;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;3;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;22;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;70;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;41;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;174;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;429;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;48;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;15;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;52;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;32;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;55;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;59;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;30;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;3;;
+Cyprus;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;5;;
+Cyprus;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;4;;
+Cyprus;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;27;;
+Cyprus;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;53;;
+Cyprus;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;31;;
+Cyprus;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;9;;
+Cyprus;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3;;
+Cyprus;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;3;;
+Cyprus;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;6;;
+Cyprus;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;9;;
+Cyprus;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;34;;
+Cyprus;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;8;;
+Cyprus;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;29;;
+Cyprus;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;76;;
+Cyprus;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;28;;
+Cyprus;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;15;;
+Cyprus;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;51;;
+Cyprus;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;20;;
+Cyprus;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;29;;
+Cyprus;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;66;;
+Cyprus;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;48;;
+Cyprus;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;7;;
+Cyprus;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;29;;
+Cyprus;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;12;;
+Cyprus;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;10;;
+Cyprus;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;8;;
+Cyprus;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;15;;
+Cyprus;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;24;;
+Cyprus;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;7;;
+Cyprus;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;7;;
+Cyprus;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;4;;
+Cyprus;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;4;;
+Cyprus;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;13;;
+Cyprus;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;72;;
+Cyprus;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;39;;
+Cyprus;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;4;;
+Cyprus;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;5;;
+Cyprus;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;3;;
+Cyprus;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;7;;
+Cyprus;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;4;;
+Cyprus;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;8;;
+Cyprus;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;3;;
+Cyprus;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;4;;
+Cyprus;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;5;;
+Cyprus;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;6;;
+Cyprus;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;:;c;
+Cyprus;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;13;;
+Cyprus;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;62;;
+Cyprus;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;30;;
+Cyprus;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;275;;
+Cyprus;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;839;;
+Cyprus;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;303;;
+Cyprus;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;31;;
+Cyprus;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Cyprus;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;527814;;
+Czechia;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;304312;;
+Czechia;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;520960;;
+Czechia;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;830883;;
+Czechia;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;111330;;
+Czechia;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;724979;;
+Czechia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;2;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;2;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;1;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;1;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;1;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;2;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;13;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;2;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;3;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;1;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;2;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;1;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;2;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;1;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;1;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;3;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;3;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;5;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;7;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;19;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;12;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;1;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;701;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;1110;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;86;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;2;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;1;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;4;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;1;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;24;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;20;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;1;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;2;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;2;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;47;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;57;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;11;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;2;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;81;;
+Czechia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;488;;
+Czechia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;353;;
+Czechia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;21;;
+Czechia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;12;;
+Czechia;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;106;;
+Czechia;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;67;;
+Czechia;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;1606;;
+Czechia;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;8451;;
+Czechia;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;2801;;
+Czechia;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;71;;
+Czechia;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;68;;
+Czechia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;321;;
+Czechia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;136;;
+Czechia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;3;;
+Czechia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;46;;
+Czechia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;331;;
+Czechia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;152;;
+Czechia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;5;;
+Czechia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;302;;
+Czechia;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;1408;;
+Czechia;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;540;;
+Czechia;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;19;;
+Czechia;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2632;;
+Czechia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;10726;;
+Czechia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3140;;
+Czechia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;83;;
+Czechia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;443;;
+Czechia;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;3119;;
+Czechia;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;1189;;
+Czechia;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;12;;
+Czechia;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;1082;;
+Czechia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;3342;;
+Czechia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;1512;;
+Czechia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;71;;
+Czechia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;2;;
+Czechia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;585;;
+Czechia;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;1890;;
+Czechia;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;394;;
+Czechia;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;15;;
+Czechia;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;643;;
+Czechia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;2867;;
+Czechia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;814;;
+Czechia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;10;;
+Czechia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;198;;
+Czechia;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;960;;
+Czechia;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;429;;
+Czechia;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;44;;
+Czechia;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;787;;
+Czechia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;2692;;
+Czechia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;727;;
+Czechia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;28;;
+Czechia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;610;;
+Czechia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;2090;;
+Czechia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;745;;
+Czechia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;24;;
+Czechia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;493;;
+Czechia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;4128;;
+Czechia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;2893;;
+Czechia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;63;;
+Czechia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Education ;Y15-29;2011;454;;
+Czechia;F;POP;TOTAL;Managers;Education ;Y30-49;2011;7155;;
+Czechia;F;POP;TOTAL;Managers;Education ;Y50-64;2011;6403;;
+Czechia;F;POP;TOTAL;Managers;Education ;Y65-84;2011;147;;
+Czechia;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;415;;
+Czechia;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;3610;;
+Czechia;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;2458;;
+Czechia;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;74;;
+Czechia;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;314;;
+Czechia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;1245;;
+Czechia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;638;;
+Czechia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;31;;
+Czechia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;284;;
+Czechia;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;1166;;
+Czechia;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;473;;
+Czechia;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;31;;
+Czechia;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;8;;
+Czechia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;20;;
+Czechia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Czechia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Czechia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;8;;
+Czechia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;33;;
+Czechia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;9;;
+Czechia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;;
+Czechia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;401;;
+Czechia;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;1402;;
+Czechia;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;684;;
+Czechia;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;46;;
+Czechia;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;141;;
+Czechia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;469;;
+Czechia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;261;;
+Czechia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;19;;
+Czechia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;55;;
+Czechia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;169;;
+Czechia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;97;;
+Czechia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;5;;
+Czechia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;3627;;
+Czechia;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;8803;;
+Czechia;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;2473;;
+Czechia;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;68;;
+Czechia;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;236;;
+Czechia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;677;;
+Czechia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;268;;
+Czechia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;3;;
+Czechia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;129;;
+Czechia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;377;;
+Czechia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;176;;
+Czechia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;7;;
+Czechia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;1068;;
+Czechia;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;2351;;
+Czechia;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;1036;;
+Czechia;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;136;;
+Czechia;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2346;;
+Czechia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4690;;
+Czechia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1100;;
+Czechia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;40;;
+Czechia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;483;;
+Czechia;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;1428;;
+Czechia;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;606;;
+Czechia;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;9;;
+Czechia;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;220;;
+Czechia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;391;;
+Czechia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;122;;
+Czechia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;9;;
+Czechia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;4532;;
+Czechia;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;7862;;
+Czechia;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;2013;;
+Czechia;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;146;;
+Czechia;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;6517;;
+Czechia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;14124;;
+Czechia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;4467;;
+Czechia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;173;;
+Czechia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;215;;
+Czechia;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;516;;
+Czechia;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;185;;
+Czechia;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;18;;
+Czechia;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;10888;;
+Czechia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;18474;;
+Czechia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;6467;;
+Czechia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;833;;
+Czechia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;8;;
+Czechia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;1772;;
+Czechia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;2253;;
+Czechia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;500;;
+Czechia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;39;;
+Czechia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;3428;;
+Czechia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;11445;;
+Czechia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;5926;;
+Czechia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;241;;
+Czechia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;20496;;
+Czechia;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;79099;;
+Czechia;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;41450;;
+Czechia;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;3141;;
+Czechia;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;19;;
+Czechia;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;21920;;
+Czechia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;69729;;
+Czechia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;35323;;
+Czechia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;3451;;
+Czechia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;5;;
+Czechia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;2397;;
+Czechia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;6028;;
+Czechia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;3383;;
+Czechia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;460;;
+Czechia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;16;;
+Czechia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;768;;
+Czechia;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;1671;;
+Czechia;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;552;;
+Czechia;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;62;;
+Czechia;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;44;;
+Czechia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;54;;
+Czechia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;23;;
+Czechia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;60;;
+Czechia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;106;;
+Czechia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;20;;
+Czechia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;2602;;
+Czechia;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;7951;;
+Czechia;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;4896;;
+Czechia;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;893;;
+Czechia;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;10;;
+Czechia;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;870;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;5020;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;4073;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;139;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;135;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;937;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;593;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;8;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;16682;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;53479;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;20622;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;352;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;4;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;639;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2618;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1428;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;18;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;464;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2378;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1248;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;33;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;2788;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;9951;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;4579;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;190;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;9118;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;27084;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;9544;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;465;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;2403;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;7761;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;3310;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;58;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;717;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;2049;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;952;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;46;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;3498;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;6841;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;2130;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;90;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;6762;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;16412;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;7214;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;295;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;1923;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;6325;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;2647;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;156;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;7941;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;22921;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;11154;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;1177;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;7;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;3914;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;6906;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;2966;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;156;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;9303;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;42983;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;24242;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;425;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;2;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;1238;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;6877;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;5002;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;349;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;10921;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;27681;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;14959;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;761;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;4;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;1424;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;3481;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;1636;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;182;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;945;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;3055;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;1572;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;132;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;23;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;83;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;43;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;5;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;45;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;108;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;30;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;3436;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;8886;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;4793;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;435;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;9;;
+Czechia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;237;;
+Czechia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;933;;
+Czechia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;553;;
+Czechia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;25;;
+Czechia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;75;;
+Czechia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;415;;
+Czechia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;267;;
+Czechia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;2;;
+Czechia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;5592;;
+Czechia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;15620;;
+Czechia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;5011;;
+Czechia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;91;;
+Czechia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;351;;
+Czechia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;695;;
+Czechia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;305;;
+Czechia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;4;;
+Czechia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;236;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;928;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;394;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;13;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;1122;;
+Czechia;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;3345;;
+Czechia;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;1140;;
+Czechia;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;45;;
+Czechia;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;4363;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;10243;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2651;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;85;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;5407;;
+Czechia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;21235;;
+Czechia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;7841;;
+Czechia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;204;;
+Czechia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;2724;;
+Czechia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;3059;;
+Czechia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;1050;;
+Czechia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;60;;
+Czechia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;3827;;
+Czechia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;4101;;
+Czechia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;1086;;
+Czechia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;81;;
+Czechia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;3203;;
+Czechia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;4406;;
+Czechia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;1431;;
+Czechia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;57;;
+Czechia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;467;;
+Czechia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;1076;;
+Czechia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;471;;
+Czechia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;56;;
+Czechia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;2295;;
+Czechia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;3529;;
+Czechia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;1327;;
+Czechia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;149;;
+Czechia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;7180;;
+Czechia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;8589;;
+Czechia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;2852;;
+Czechia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;206;;
+Czechia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;2;;
+Czechia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;3199;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;8165;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;3932;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;127;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;731;;
+Czechia;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;2514;;
+Czechia;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;1756;;
+Czechia;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;187;;
+Czechia;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;1056;;
+Czechia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;3636;;
+Czechia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;2079;;
+Czechia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;119;;
+Czechia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;1787;;
+Czechia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;2764;;
+Czechia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;856;;
+Czechia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;111;;
+Czechia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;668;;
+Czechia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;1447;;
+Czechia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;603;;
+Czechia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;40;;
+Czechia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;7;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;17;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;11;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;17;;
+Czechia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;36;;
+Czechia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;7;;
+Czechia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;1900;;
+Czechia;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;3990;;
+Czechia;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;2088;;
+Czechia;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;192;;
+Czechia;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;4;;
+Czechia;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;322;;
+Czechia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;1260;;
+Czechia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;889;;
+Czechia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;44;;
+Czechia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;16;;
+Czechia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;58;;
+Czechia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;60;;
+Czechia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;2;;
+Czechia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;3548;;
+Czechia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;10350;;
+Czechia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;4548;;
+Czechia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;129;;
+Czechia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;29;;
+Czechia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;84;;
+Czechia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;52;;
+Czechia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Czechia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;27;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;111;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;66;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;161;;
+Czechia;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;525;;
+Czechia;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;272;;
+Czechia;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;8;;
+Czechia;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;32523;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;93054;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;36976;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1230;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;4;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;1181;;
+Czechia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;3723;;
+Czechia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;1449;;
+Czechia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;38;;
+Czechia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;20412;;
+Czechia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;31072;;
+Czechia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;11070;;
+Czechia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;351;;
+Czechia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;3;;
+Czechia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;539;;
+Czechia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;581;;
+Czechia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;146;;
+Czechia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;15;;
+Czechia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;520;;
+Czechia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;794;;
+Czechia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;313;;
+Czechia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;4;;
+Czechia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;130;;
+Czechia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;640;;
+Czechia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;381;;
+Czechia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;58;;
+Czechia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;431;;
+Czechia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;660;;
+Czechia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;276;;
+Czechia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;25;;
+Czechia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;1411;;
+Czechia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;4122;;
+Czechia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;3527;;
+Czechia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;312;;
+Czechia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;3;;
+Czechia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1954;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;5877;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;1996;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;64;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;933;;
+Czechia;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;12228;;
+Czechia;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;8098;;
+Czechia;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;329;;
+Czechia;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;3076;;
+Czechia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;17192;;
+Czechia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;9857;;
+Czechia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;231;;
+Czechia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;2480;;
+Czechia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;3112;;
+Czechia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;1170;;
+Czechia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;287;;
+Czechia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;8906;;
+Czechia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;17398;;
+Czechia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;5844;;
+Czechia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;381;;
+Czechia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;458;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;957;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;622;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;27;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;7;;
+Czechia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;10;;
+Czechia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Czechia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;9574;;
+Czechia;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;24521;;
+Czechia;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;11868;;
+Czechia;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;676;;
+Czechia;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;10;;
+Czechia;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;1712;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;9745;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;6581;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;336;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;9;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;2;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;1;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;1;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;47;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;226;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;137;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;1;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;5;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;3;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;15;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;5;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;1;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;300;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;590;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;102;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;14;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;52;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;16;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;1;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;2;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;17;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;6;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;2;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;1;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;1;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;4;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;4;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;4;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;5;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;22;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;62;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;24;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;5;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;212;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;802;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;352;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;13;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;21;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;80;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;52;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;16;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;62;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;33;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;3;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;324;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;1432;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;783;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;8;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;74;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;122;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;50;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;43;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;120;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;45;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;2;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;13;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;10;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;283;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;1293;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;802;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;39;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;4;;
+Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;28;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;122;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;55;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;5;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;12;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;125;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;112;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;11529;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;46989;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;20536;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;269;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;2;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;27;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;138;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;106;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;7;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;80;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;56;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;545;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;1653;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;793;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;39;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;355;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1147;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;451;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;10;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;93;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;428;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;208;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;9;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;243;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;370;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;118;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;5;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;134;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;247;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;146;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;2;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;8;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;34;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;12;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;2;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;8;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;102;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;53;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;2;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;148;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;409;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;183;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;15;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;131;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;425;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;217;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;8;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;14;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;142;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;97;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;5;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;17;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;130;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;101;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;9;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;55;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;254;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;165;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;6;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;88;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;432;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;281;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;19;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;162;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;842;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;450;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;24;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;4;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;8;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;4;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;1463;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;4588;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;2265;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;58;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;4;;
+Czechia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;43;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;341;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;287;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;6;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;46;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;578;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;616;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;3;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;19330;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;73074;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;32055;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;239;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;10;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;64;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;270;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;254;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;10;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;47;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;357;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;335;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;10;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;127;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;493;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;325;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;9;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;807;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;3301;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1388;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;20;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;866;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;4586;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;2609;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;25;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;46;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;216;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;145;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;3;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;60;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;146;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;78;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;20;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;36;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;16;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;3;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;20;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;17;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;5;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;101;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;306;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;144;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;11;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;206;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;661;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;384;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;10;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;43;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;271;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;222;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;7;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;13;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;154;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;140;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;6;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;243;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;1383;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;944;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;17;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;40;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;89;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;41;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;2;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;177;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;881;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;564;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;16;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;10;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;7;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;2008;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;6876;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;3554;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;54;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;3;;
+Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;131;;
+Czechia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;1308;;
+Czechia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;1165;;
+Czechia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;117;;
+Czechia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;10;;
+Czechia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;103;;
+Czechia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;141;;
+Czechia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;2;;
+Czechia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;2117;;
+Czechia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;9276;;
+Czechia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;5547;;
+Czechia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;235;;
+Czechia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;19;;
+Czechia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;125;;
+Czechia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;109;;
+Czechia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;8;;
+Czechia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;90;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;659;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;481;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;28;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;108;;
+Czechia;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;570;;
+Czechia;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;383;;
+Czechia;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;52;;
+Czechia;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;294;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1200;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;872;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;126;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;230;;
+Czechia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;938;;
+Czechia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;752;;
+Czechia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;57;;
+Czechia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;2;;
+Czechia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;707;;
+Czechia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;3982;;
+Czechia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;2274;;
+Czechia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;123;;
+Czechia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;40;;
+Czechia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;91;;
+Czechia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;74;;
+Czechia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;19;;
+Czechia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;9;;
+Czechia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;48;;
+Czechia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;52;;
+Czechia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;27;;
+Czechia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;28;;
+Czechia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;200;;
+Czechia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;184;;
+Czechia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;42;;
+Czechia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;71;;
+Czechia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;289;;
+Czechia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;244;;
+Czechia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;40;;
+Czechia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;1717;;
+Czechia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;14556;;
+Czechia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;10631;;
+Czechia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;1267;;
+Czechia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;5;;
+Czechia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;145;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;1649;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;1551;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;145;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;296;;
+Czechia;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;6911;;
+Czechia;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;5473;;
+Czechia;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;429;;
+Czechia;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;446;;
+Czechia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;4146;;
+Czechia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;3648;;
+Czechia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;259;;
+Czechia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;3;;
+Czechia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;197;;
+Czechia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;608;;
+Czechia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;635;;
+Czechia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;248;;
+Czechia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;224;;
+Czechia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;1592;;
+Czechia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;1221;;
+Czechia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;117;;
+Czechia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;104;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;293;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;165;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;12;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1;;
+Czechia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;;
+Czechia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Czechia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;2376;;
+Czechia;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;11577;;
+Czechia;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;9029;;
+Czechia;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;825;;
+Czechia;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;7;;
+Czechia;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;178;;
+Czechia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;762;;
+Czechia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;621;;
+Czechia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;111;;
+Czechia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;4;;
+Czechia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;19;;
+Czechia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;61;;
+Czechia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;48;;
+Czechia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;1;;
+Czechia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;2075;;
+Czechia;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;6137;;
+Czechia;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;2741;;
+Czechia;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;189;;
+Czechia;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;3;;
+Czechia;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;29;;
+Czechia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;104;;
+Czechia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;76;;
+Czechia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;7;;
+Czechia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;33;;
+Czechia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;134;;
+Czechia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;84;;
+Czechia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;;
+Czechia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;171;;
+Czechia;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;693;;
+Czechia;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;407;;
+Czechia;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;41;;
+Czechia;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1551;;
+Czechia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;5616;;
+Czechia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3007;;
+Czechia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;375;;
+Czechia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;2;;
+Czechia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;243;;
+Czechia;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;798;;
+Czechia;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;410;;
+Czechia;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;26;;
+Czechia;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;830;;
+Czechia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;1990;;
+Czechia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;1030;;
+Czechia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;115;;
+Czechia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;312;;
+Czechia;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;599;;
+Czechia;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;202;;
+Czechia;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;49;;
+Czechia;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;418;;
+Czechia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;1119;;
+Czechia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;659;;
+Czechia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;96;;
+Czechia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;137;;
+Czechia;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;550;;
+Czechia;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;261;;
+Czechia;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;47;;
+Czechia;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;602;;
+Czechia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;1956;;
+Czechia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;1462;;
+Czechia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;433;;
+Czechia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;3;;
+Czechia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;777;;
+Czechia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;1979;;
+Czechia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;1166;;
+Czechia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;278;;
+Czechia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;363;;
+Czechia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;1321;;
+Czechia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;695;;
+Czechia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;52;;
+Czechia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;2;;
+Czechia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;416;;
+Czechia;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;1807;;
+Czechia;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;1161;;
+Czechia;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;180;;
+Czechia;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;577;;
+Czechia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;2031;;
+Czechia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;1507;;
+Czechia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;206;;
+Czechia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;1;;
+Czechia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;272;;
+Czechia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;602;;
+Czechia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;326;;
+Czechia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;92;;
+Czechia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;554;;
+Czechia;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;1724;;
+Czechia;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;793;;
+Czechia;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;105;;
+Czechia;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;62;;
+Czechia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;178;;
+Czechia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;74;;
+Czechia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;11;;
+Czechia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;7;;
+Czechia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;19;;
+Czechia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Czechia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;56167;;
+Czechia;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;85111;;
+Czechia;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;44216;;
+Czechia;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;8016;;
+Czechia;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;214;;
+Czechia;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;478849;;
+Czechia;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;203944;;
+Czechia;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;336583;;
+Czechia;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;561783;;
+Czechia;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;42312;;
+Czechia;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;763949;;
+Czechia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;2;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;3;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;3;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;8;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;25;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;6;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;2;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;4;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;1;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;52;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;132;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;51;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;1;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;1;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;3;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;11;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;18;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;1;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;2;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;4;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;2;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;5;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;10;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;4;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;32;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;53;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;18;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;1;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;4177;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;9050;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;449;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;6;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;6;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;12;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;4;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;19;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;25;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;2;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;5;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;16;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;1;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;1;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;4;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;4;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;2;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;332;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;576;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;29;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;1;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;249;;
+Czechia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;2358;;
+Czechia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;2241;;
+Czechia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;199;;
+Czechia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;44;;
+Czechia;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;579;;
+Czechia;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;540;;
+Czechia;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;35;;
+Czechia;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;3312;;
+Czechia;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;29894;;
+Czechia;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;14189;;
+Czechia;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;917;;
+Czechia;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;7;;
+Czechia;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;97;;
+Czechia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1809;;
+Czechia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1109;;
+Czechia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;48;;
+Czechia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;109;;
+Czechia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1505;;
+Czechia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;952;;
+Czechia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;54;;
+Czechia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;2372;;
+Czechia;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;14521;;
+Czechia;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;7143;;
+Czechia;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;428;;
+Czechia;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2778;;
+Czechia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;18401;;
+Czechia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;6273;;
+Czechia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;383;;
+Czechia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;522;;
+Czechia;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;4553;;
+Czechia;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;2316;;
+Czechia;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;83;;
+Czechia;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;916;;
+Czechia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;3735;;
+Czechia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;1524;;
+Czechia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;117;;
+Czechia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;1258;;
+Czechia;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;7397;;
+Czechia;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;1692;;
+Czechia;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;111;;
+Czechia;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;607;;
+Czechia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;4259;;
+Czechia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;957;;
+Czechia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;40;;
+Czechia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;185;;
+Czechia;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;1683;;
+Czechia;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;954;;
+Czechia;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;140;;
+Czechia;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;707;;
+Czechia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;4839;;
+Czechia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;1970;;
+Czechia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;221;;
+Czechia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;484;;
+Czechia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;2551;;
+Czechia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;1164;;
+Czechia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;112;;
+Czechia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;369;;
+Czechia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;5249;;
+Czechia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;4564;;
+Czechia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;237;;
+Czechia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Education ;Y15-29;2011;174;;
+Czechia;M;POP;TOTAL;Managers;Education ;Y30-49;2011;2632;;
+Czechia;M;POP;TOTAL;Managers;Education ;Y50-64;2011;2916;;
+Czechia;M;POP;TOTAL;Managers;Education ;Y65-84;2011;209;;
+Czechia;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;144;;
+Czechia;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;1772;;
+Czechia;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;1366;;
+Czechia;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;122;;
+Czechia;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;293;;
+Czechia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;1810;;
+Czechia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;870;;
+Czechia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;95;;
+Czechia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;217;;
+Czechia;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;1123;;
+Czechia;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;725;;
+Czechia;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;91;;
+Czechia;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;3;;
+Czechia;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Czechia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;9;;
+Czechia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;6;;
+Czechia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;2;;
+Czechia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;4;;
+Czechia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;23;;
+Czechia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;16;;
+Czechia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;437;;
+Czechia;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;2159;;
+Czechia;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;998;;
+Czechia;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;119;;
+Czechia;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;424;;
+Czechia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;1731;;
+Czechia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;1158;;
+Czechia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;175;;
+Czechia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;96;;
+Czechia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;479;;
+Czechia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;278;;
+Czechia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;33;;
+Czechia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;8436;;
+Czechia;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;21163;;
+Czechia;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;6773;;
+Czechia;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;677;;
+Czechia;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;6;;
+Czechia;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;510;;
+Czechia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1518;;
+Czechia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;764;;
+Czechia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;84;;
+Czechia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;156;;
+Czechia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;554;;
+Czechia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;274;;
+Czechia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;57;;
+Czechia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;2985;;
+Czechia;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;6832;;
+Czechia;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;3363;;
+Czechia;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;704;;
+Czechia;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;5;;
+Czechia;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2062;;
+Czechia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;5694;;
+Czechia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1064;;
+Czechia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;82;;
+Czechia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;650;;
+Czechia;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;2006;;
+Czechia;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;877;;
+Czechia;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;50;;
+Czechia;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;144;;
+Czechia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;242;;
+Czechia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;73;;
+Czechia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;7;;
+Czechia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;17672;;
+Czechia;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;30782;;
+Czechia;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;5340;;
+Czechia;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;407;;
+Czechia;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;3;;
+Czechia;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;5208;;
+Czechia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;10662;;
+Czechia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;2636;;
+Czechia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;201;;
+Czechia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;148;;
+Czechia;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;597;;
+Czechia;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;310;;
+Czechia;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;116;;
+Czechia;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;11617;;
+Czechia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;26825;;
+Czechia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;11460;;
+Czechia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;3160;;
+Czechia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;41;;
+Czechia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;788;;
+Czechia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;1393;;
+Czechia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;381;;
+Czechia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;52;;
+Czechia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1592;;
+Czechia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;7290;;
+Czechia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;3868;;
+Czechia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;307;;
+Czechia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;5;;
+Czechia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;5780;;
+Czechia;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;21870;;
+Czechia;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;15254;;
+Czechia;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;3698;;
+Czechia;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;19;;
+Czechia;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;3114;;
+Czechia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;11836;;
+Czechia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;8532;;
+Czechia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;1816;;
+Czechia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;33;;
+Czechia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;1968;;
+Czechia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;5666;;
+Czechia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;2671;;
+Czechia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;573;;
+Czechia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;27;;
+Czechia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;581;;
+Czechia;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;2346;;
+Czechia;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;1018;;
+Czechia;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;298;;
+Czechia;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;21;;
+Czechia;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;8;;
+Czechia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;6;;
+Czechia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;17;;
+Czechia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;57;;
+Czechia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;14;;
+Czechia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;;
+Czechia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;1428;;
+Czechia;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;3102;;
+Czechia;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;1858;;
+Czechia;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;685;;
+Czechia;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;23;;
+Czechia;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;1118;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;4864;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;4508;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;269;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;284;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;2368;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;1614;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;61;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;22768;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;63019;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;29424;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;1738;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;4;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1057;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;5829;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3926;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;229;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;453;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2329;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1508;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;117;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;5265;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;16112;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;9017;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;852;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;4;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;9545;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;30152;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;10537;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;863;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;4;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;2076;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;6569;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;3618;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;168;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;517;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;1737;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;582;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;37;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;5710;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;11775;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;3436;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;273;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;3446;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;7348;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;3588;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;365;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;1250;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;4516;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;2467;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;373;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;3;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;4172;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;10237;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;5998;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;1423;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;5;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;2011;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;4868;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;3305;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;366;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;3;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;3961;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;18971;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;10960;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;493;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;527;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;1199;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;1064;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;256;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;1844;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;4093;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;2158;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;224;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;2950;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;4513;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;1654;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;273;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;3;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;1059;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;2260;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;1206;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;186;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;7;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;29;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;23;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;3;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;16;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;61;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;18;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;3462;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;7296;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;4129;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;534;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;5;;
+Czechia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;64;;
+Czechia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;264;;
+Czechia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;224;;
+Czechia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;21;;
+Czechia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;43;;
+Czechia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;182;;
+Czechia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;114;;
+Czechia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;3;;
+Czechia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;3448;;
+Czechia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;8180;;
+Czechia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;2863;;
+Czechia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;79;;
+Czechia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;122;;
+Czechia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;302;;
+Czechia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;240;;
+Czechia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;6;;
+Czechia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;53;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;201;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;135;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;6;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;366;;
+Czechia;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;879;;
+Czechia;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;424;;
+Czechia;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;32;;
+Czechia;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1955;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4423;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1285;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;67;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;5216;;
+Czechia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;16063;;
+Czechia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;7158;;
+Czechia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;294;;
+Czechia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;757;;
+Czechia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;668;;
+Czechia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;278;;
+Czechia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;42;;
+Czechia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;2117;;
+Czechia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;1758;;
+Czechia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;389;;
+Czechia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;53;;
+Czechia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;744;;
+Czechia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;870;;
+Czechia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;278;;
+Czechia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;25;;
+Czechia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;57;;
+Czechia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;136;;
+Czechia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;90;;
+Czechia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;21;;
+Czechia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;506;;
+Czechia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;601;;
+Czechia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;208;;
+Czechia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;55;;
+Czechia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;1707;;
+Czechia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;1925;;
+Czechia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;820;;
+Czechia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;113;;
+Czechia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;513;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;1384;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;892;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;78;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;120;;
+Czechia;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;147;;
+Czechia;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;131;;
+Czechia;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;48;;
+Czechia;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;206;;
+Czechia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;345;;
+Czechia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;222;;
+Czechia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;44;;
+Czechia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;812;;
+Czechia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;1075;;
+Czechia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;287;;
+Czechia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;72;;
+Czechia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;181;;
+Czechia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;295;;
+Czechia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;128;;
+Czechia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;19;;
+Czechia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;3;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;8;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;4;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;6;;
+Czechia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;7;;
+Czechia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;;
+Czechia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;842;;
+Czechia;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;1572;;
+Czechia;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;854;;
+Czechia;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;81;;
+Czechia;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;224;;
+Czechia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;883;;
+Czechia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;922;;
+Czechia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;106;;
+Czechia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;39;;
+Czechia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;218;;
+Czechia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;173;;
+Czechia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;18;;
+Czechia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;2292;;
+Czechia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;5231;;
+Czechia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;3702;;
+Czechia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;355;;
+Czechia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;61;;
+Czechia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;305;;
+Czechia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;223;;
+Czechia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;15;;
+Czechia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;33;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;193;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;212;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;50;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;261;;
+Czechia;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;909;;
+Czechia;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;652;;
+Czechia;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;76;;
+Czechia;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;14312;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;30702;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;11555;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;859;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;5;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;913;;
+Czechia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;3052;;
+Czechia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;1608;;
+Czechia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;137;;
+Czechia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;17494;;
+Czechia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;25144;;
+Czechia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;6758;;
+Czechia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;308;;
+Czechia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;514;;
+Czechia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;669;;
+Czechia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;202;;
+Czechia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;31;;
+Czechia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;214;;
+Czechia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;363;;
+Czechia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;121;;
+Czechia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;13;;
+Czechia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;215;;
+Czechia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;982;;
+Czechia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;969;;
+Czechia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;219;;
+Czechia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;205;;
+Czechia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;455;;
+Czechia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;284;;
+Czechia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;71;;
+Czechia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;2872;;
+Czechia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;7088;;
+Czechia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;9251;;
+Czechia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;1374;;
+Czechia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;11386;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;31517;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;6525;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;247;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;346;;
+Czechia;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;2121;;
+Czechia;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;3383;;
+Czechia;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;611;;
+Czechia;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;1799;;
+Czechia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;3868;;
+Czechia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;2347;;
+Czechia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;172;;
+Czechia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;1080;;
+Czechia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;1838;;
+Czechia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;1110;;
+Czechia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;255;;
+Czechia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;1269;;
+Czechia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;2325;;
+Czechia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;1216;;
+Czechia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;141;;
+Czechia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;69;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;212;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;235;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;38;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Czechia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;6;;
+Czechia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;6;;
+Czechia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;4868;;
+Czechia;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;8252;;
+Czechia;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;5124;;
+Czechia;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;790;;
+Czechia;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;4455;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;16362;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;11512;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;1103;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;11;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;7;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;20;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;14;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;123;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;304;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;226;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;11;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;3;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;3;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;25;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;17;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;26;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;54;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;20;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;2;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;36;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;132;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;61;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;5;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;26;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;50;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;40;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;1;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;2;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;15;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;15;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;1;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;5;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;2;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;1;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;1;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;2;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;5;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;3;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;9;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;7;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;23;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;39;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;19;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;4;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;558;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;1372;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;767;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;44;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;51;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;113;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;93;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;7;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;11;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;15;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;28;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;5;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;67;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;142;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;70;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;3;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;46;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;131;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;47;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;3;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;25;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;86;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;38;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;2;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;4;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;4;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;3;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;478;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;1501;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;1117;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;134;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;1157;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;3824;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;4497;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;101;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;592;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;4642;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;2653;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;18;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;54554;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;142246;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;75043;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;2292;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;15;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1898;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;6716;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3909;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;114;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;546;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2734;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2021;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;51;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;27970;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;100625;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;46803;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;906;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;8;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;8610;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;17606;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;7270;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;232;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;1755;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;6326;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;4363;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;77;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;257;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;604;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;387;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;29;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;773;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;1702;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;727;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;33;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;32;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;66;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;43;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;6;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;77;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;465;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;509;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;42;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;419;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;994;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;606;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;95;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;337;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;946;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;732;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;46;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;309;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;1527;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;1557;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;60;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;67;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;343;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;730;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;144;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;158;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;886;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;1340;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;70;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;401;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;1190;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;921;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;81;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;773;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;2454;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;1878;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;151;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;12;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;22;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;22;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;4;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;2;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;9700;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;26232;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;15131;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;614;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;5;;
+Czechia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;2618;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;9196;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;7673;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;153;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;1557;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;8628;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;4615;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;42;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;44441;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;87560;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;40747;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;821;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;526;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2410;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2032;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;116;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;893;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;4559;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3408;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;136;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;4198;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;16157;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;9402;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;183;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;5954;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;12565;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;4985;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;201;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;17622;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;64312;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;34154;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;729;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;312;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;525;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;310;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;14;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;203;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;387;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;171;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;17;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;33;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;71;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;34;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;2;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;22;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;97;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;93;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;22;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;254;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;564;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;300;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;38;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;805;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;2005;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;1153;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;53;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;432;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;1949;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;1620;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;85;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;38;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;133;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;270;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;83;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;658;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;2662;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;2082;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;128;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;120;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;345;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;281;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;38;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;382;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;1206;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;780;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;41;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;22;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;52;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;34;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;9;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;9;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;6;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;6656;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;17549;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;10913;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;411;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;4;;
+Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;378;;
+Czechia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;1066;;
+Czechia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;1183;;
+Czechia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;122;;
+Czechia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;59;;
+Czechia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;173;;
+Czechia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;152;;
+Czechia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;11;;
+Czechia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;3177;;
+Czechia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;5040;;
+Czechia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;3023;;
+Czechia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;104;;
+Czechia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;86;;
+Czechia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;224;;
+Czechia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;158;;
+Czechia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;6;;
+Czechia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;909;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2581;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1725;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;126;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;1277;;
+Czechia;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;2533;;
+Czechia;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;1368;;
+Czechia;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;42;;
+Czechia;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;366;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;564;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;307;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;54;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;792;;
+Czechia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;1550;;
+Czechia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;1129;;
+Czechia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;67;;
+Czechia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;142;;
+Czechia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;203;;
+Czechia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;136;;
+Czechia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;14;;
+Czechia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;41;;
+Czechia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;60;;
+Czechia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;26;;
+Czechia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;5;;
+Czechia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;16;;
+Czechia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;14;;
+Czechia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;10;;
+Czechia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;35;;
+Czechia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;73;;
+Czechia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;63;;
+Czechia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;12;;
+Czechia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;103;;
+Czechia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;163;;
+Czechia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;106;;
+Czechia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;21;;
+Czechia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;1275;;
+Czechia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;3139;;
+Czechia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;3004;;
+Czechia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;290;;
+Czechia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;917;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;2098;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;1501;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;63;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;39;;
+Czechia;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;76;;
+Czechia;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;122;;
+Czechia;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;45;;
+Czechia;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;171;;
+Czechia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;387;;
+Czechia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;280;;
+Czechia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;32;;
+Czechia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;125;;
+Czechia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;132;;
+Czechia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;96;;
+Czechia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;43;;
+Czechia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;158;;
+Czechia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;450;;
+Czechia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;353;;
+Czechia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;30;;
+Czechia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;23;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;46;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;33;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;4;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;2;;
+Czechia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Czechia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;3398;;
+Czechia;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;6549;;
+Czechia;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;4742;;
+Czechia;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;209;;
+Czechia;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;580;;
+Czechia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;2163;;
+Czechia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;1770;;
+Czechia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;431;;
+Czechia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;5;;
+Czechia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;67;;
+Czechia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;298;;
+Czechia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;207;;
+Czechia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;19;;
+Czechia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;4053;;
+Czechia;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;10685;;
+Czechia;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;6218;;
+Czechia;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;962;;
+Czechia;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;10;;
+Czechia;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;148;;
+Czechia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;505;;
+Czechia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;384;;
+Czechia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;63;;
+Czechia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;110;;
+Czechia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;451;;
+Czechia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;331;;
+Czechia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;46;;
+Czechia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;2129;;
+Czechia;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;9399;;
+Czechia;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;4564;;
+Czechia;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;492;;
+Czechia;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;4;;
+Czechia;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1921;;
+Czechia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;7306;;
+Czechia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3819;;
+Czechia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;631;;
+Czechia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;6;;
+Czechia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;787;;
+Czechia;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;3012;;
+Czechia;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;1926;;
+Czechia;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;163;;
+Czechia;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;697;;
+Czechia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;2174;;
+Czechia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;1106;;
+Czechia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;121;;
+Czechia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;825;;
+Czechia;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;1610;;
+Czechia;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;432;;
+Czechia;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;109;;
+Czechia;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;3;;
+Czechia;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;398;;
+Czechia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;938;;
+Czechia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;528;;
+Czechia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;115;;
+Czechia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;138;;
+Czechia;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;672;;
+Czechia;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;475;;
+Czechia;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;153;;
+Czechia;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;671;;
+Czechia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;1957;;
+Czechia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;1443;;
+Czechia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;747;;
+Czechia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;18;;
+Czechia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;490;;
+Czechia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;1294;;
+Czechia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;1012;;
+Czechia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;245;;
+Czechia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;517;;
+Czechia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;1872;;
+Czechia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;883;;
+Czechia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;76;;
+Czechia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;271;;
+Czechia;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;501;;
+Czechia;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;481;;
+Czechia;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;177;;
+Czechia;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;3;;
+Czechia;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;195;;
+Czechia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;583;;
+Czechia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;484;;
+Czechia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;122;;
+Czechia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;380;;
+Czechia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;845;;
+Czechia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;383;;
+Czechia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;148;;
+Czechia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;2;;
+Czechia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;311;;
+Czechia;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;964;;
+Czechia;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;677;;
+Czechia;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;131;;
+Czechia;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;27;;
+Czechia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;61;;
+Czechia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;30;;
+Czechia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;10;;
+Czechia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;1;;
+Czechia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;7;;
+Czechia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;16;;
+Czechia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;5;;
+Czechia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Czechia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Czechia;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;56441;;
+Czechia;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;88598;;
+Czechia;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;54470;;
+Czechia;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;10235;;
+Czechia;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;217;;
+Czechia;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Education ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Education ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Education ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Education ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;:;c;
+Denmark;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Education ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Education ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Education ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Education ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Denmark;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;:;c;
+Denmark;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;65334;;
+Estonia;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;30966;;
+Estonia;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;44386;;
+Estonia;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;122659;;
+Estonia;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;18361;;
+Estonia;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;97003;;
+Estonia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;1;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;2;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;1;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;1;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;64;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;215;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;71;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;6;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;5;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;1;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;1;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;1;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;10;;
+Estonia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;86;;
+Estonia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;86;;
+Estonia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;1;;
+Estonia;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;16;;
+Estonia;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;16;;
+Estonia;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;131;;
+Estonia;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;1172;;
+Estonia;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;631;;
+Estonia;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;50;;
+Estonia;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;9;;
+Estonia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;52;;
+Estonia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;33;;
+Estonia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;31;;
+Estonia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;17;;
+Estonia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;38;;
+Estonia;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;201;;
+Estonia;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;102;;
+Estonia;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;5;;
+Estonia;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;592;;
+Estonia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;3393;;
+Estonia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1344;;
+Estonia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;67;;
+Estonia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;86;;
+Estonia;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;500;;
+Estonia;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;197;;
+Estonia;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;14;;
+Estonia;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;317;;
+Estonia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;810;;
+Estonia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;368;;
+Estonia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;26;;
+Estonia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;128;;
+Estonia;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;418;;
+Estonia;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;104;;
+Estonia;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;5;;
+Estonia;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;93;;
+Estonia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;522;;
+Estonia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;97;;
+Estonia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;26;;
+Estonia;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;183;;
+Estonia;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;137;;
+Estonia;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;12;;
+Estonia;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;133;;
+Estonia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;698;;
+Estonia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;247;;
+Estonia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;34;;
+Estonia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;113;;
+Estonia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;522;;
+Estonia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;219;;
+Estonia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;10;;
+Estonia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;183;;
+Estonia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;1233;;
+Estonia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;653;;
+Estonia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;47;;
+Estonia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Education ;Y15-29;2011;103;;
+Estonia;F;POP;TOTAL;Managers;Education ;Y30-49;2011;1390;;
+Estonia;F;POP;TOTAL;Managers;Education ;Y50-64;2011;1314;;
+Estonia;F;POP;TOTAL;Managers;Education ;Y65-84;2011;106;;
+Estonia;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;60;;
+Estonia;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;762;;
+Estonia;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;496;;
+Estonia;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;86;;
+Estonia;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;87;;
+Estonia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;596;;
+Estonia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;416;;
+Estonia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;65;;
+Estonia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;118;;
+Estonia;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;457;;
+Estonia;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;207;;
+Estonia;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;39;;
+Estonia;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;1;;
+Estonia;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;21;;
+Estonia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Estonia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;6;;
+Estonia;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;18;;
+Estonia;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;6;;
+Estonia;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;46;;
+Estonia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;252;;
+Estonia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;212;;
+Estonia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;39;;
+Estonia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;15;;
+Estonia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;48;;
+Estonia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;53;;
+Estonia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;4;;
+Estonia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;477;;
+Estonia;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;1645;;
+Estonia;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;1070;;
+Estonia;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;92;;
+Estonia;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;57;;
+Estonia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;212;;
+Estonia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;137;;
+Estonia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;13;;
+Estonia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;28;;
+Estonia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;79;;
+Estonia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;69;;
+Estonia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;127;;
+Estonia;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;455;;
+Estonia;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;388;;
+Estonia;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;34;;
+Estonia;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;554;;
+Estonia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1906;;
+Estonia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1064;;
+Estonia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;140;;
+Estonia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;154;;
+Estonia;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;584;;
+Estonia;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;344;;
+Estonia;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;18;;
+Estonia;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;80;;
+Estonia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;180;;
+Estonia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;85;;
+Estonia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;17;;
+Estonia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;979;;
+Estonia;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;1570;;
+Estonia;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;572;;
+Estonia;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;89;;
+Estonia;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;472;;
+Estonia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;1046;;
+Estonia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;212;;
+Estonia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;15;;
+Estonia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;49;;
+Estonia;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;266;;
+Estonia;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;246;;
+Estonia;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;97;;
+Estonia;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;1764;;
+Estonia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;3394;;
+Estonia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;1621;;
+Estonia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;269;;
+Estonia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Estonia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;144;;
+Estonia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;393;;
+Estonia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;126;;
+Estonia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;14;;
+Estonia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1299;;
+Estonia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;3627;;
+Estonia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;1986;;
+Estonia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;201;;
+Estonia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;2;;
+Estonia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;3283;;
+Estonia;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;13206;;
+Estonia;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;9452;;
+Estonia;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;1469;;
+Estonia;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;2;;
+Estonia;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;1568;;
+Estonia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;4211;;
+Estonia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;2691;;
+Estonia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;714;;
+Estonia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;2;;
+Estonia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;510;;
+Estonia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;1239;;
+Estonia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;916;;
+Estonia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;232;;
+Estonia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;3;;
+Estonia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;206;;
+Estonia;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;446;;
+Estonia;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;210;;
+Estonia;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;63;;
+Estonia;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;12;;
+Estonia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;65;;
+Estonia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;14;;
+Estonia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;21;;
+Estonia;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;57;;
+Estonia;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;20;;
+Estonia;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;64;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;347;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;282;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;33;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;18;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;60;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;81;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;6;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;1071;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;3581;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;1822;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;114;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;49;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;241;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;257;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;15;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;49;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;137;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;129;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;6;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;304;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;773;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;453;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;38;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;1;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1919;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4992;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1747;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;135;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;356;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;874;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;389;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;39;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;270;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;544;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;262;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;23;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;698;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;920;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;296;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;19;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;681;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;1206;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;429;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;34;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;183;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;787;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;723;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;249;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;1;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;941;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;1572;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;677;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;88;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;342;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;546;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;178;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;16;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1091;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;3077;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;2010;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;176;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;452;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;944;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;690;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;155;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;1057;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;4166;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;3755;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;593;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;387;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;638;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;305;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;56;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;259;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;602;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;404;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;54;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;22;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;45;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;14;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;27;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;33;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;25;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;6;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;32;;
+Estonia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;97;;
+Estonia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;76;;
+Estonia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;11;;
+Estonia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;6;;
+Estonia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;51;;
+Estonia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;60;;
+Estonia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;465;;
+Estonia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;1312;;
+Estonia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;831;;
+Estonia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;41;;
+Estonia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;41;;
+Estonia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;102;;
+Estonia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;105;;
+Estonia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;8;;
+Estonia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;25;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;85;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;61;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;70;;
+Estonia;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;178;;
+Estonia;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;145;;
+Estonia;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;9;;
+Estonia;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;616;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1363;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;717;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;29;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;1028;;
+Estonia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;2513;;
+Estonia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;1754;;
+Estonia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;145;;
+Estonia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;780;;
+Estonia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;465;;
+Estonia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;189;;
+Estonia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;26;;
+Estonia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;246;;
+Estonia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;337;;
+Estonia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;139;;
+Estonia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;20;;
+Estonia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;753;;
+Estonia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;1164;;
+Estonia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;262;;
+Estonia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;7;;
+Estonia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;62;;
+Estonia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;85;;
+Estonia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;101;;
+Estonia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;29;;
+Estonia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;214;;
+Estonia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;340;;
+Estonia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;213;;
+Estonia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;48;;
+Estonia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;805;;
+Estonia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;865;;
+Estonia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;206;;
+Estonia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;20;;
+Estonia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;295;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;870;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;815;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;75;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;119;;
+Estonia;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;345;;
+Estonia;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;402;;
+Estonia;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;119;;
+Estonia;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;134;;
+Estonia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;321;;
+Estonia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;284;;
+Estonia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;75;;
+Estonia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;510;;
+Estonia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;736;;
+Estonia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;492;;
+Estonia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;82;;
+Estonia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;324;;
+Estonia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;269;;
+Estonia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;123;;
+Estonia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;35;;
+Estonia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;6;;
+Estonia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;11;;
+Estonia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;6;;
+Estonia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;26;;
+Estonia;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;20;;
+Estonia;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;16;;
+Estonia;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;28;;
+Estonia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;67;;
+Estonia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;67;;
+Estonia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;6;;
+Estonia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;2;;
+Estonia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;6;;
+Estonia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;228;;
+Estonia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;611;;
+Estonia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;481;;
+Estonia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;36;;
+Estonia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;3;;
+Estonia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;12;;
+Estonia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;8;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;8;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;15;;
+Estonia;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;42;;
+Estonia;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;29;;
+Estonia;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;7887;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;12541;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;7517;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;464;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;452;;
+Estonia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;629;;
+Estonia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;479;;
+Estonia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;14;;
+Estonia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;4801;;
+Estonia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;3156;;
+Estonia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;1641;;
+Estonia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;102;;
+Estonia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;193;;
+Estonia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;130;;
+Estonia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;65;;
+Estonia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;13;;
+Estonia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;27;;
+Estonia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;50;;
+Estonia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;32;;
+Estonia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;30;;
+Estonia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;99;;
+Estonia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;150;;
+Estonia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;52;;
+Estonia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;153;;
+Estonia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;85;;
+Estonia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;37;;
+Estonia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;5;;
+Estonia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;543;;
+Estonia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;809;;
+Estonia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;655;;
+Estonia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;47;;
+Estonia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;298;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;674;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;577;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;66;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;522;;
+Estonia;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;2351;;
+Estonia;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;2498;;
+Estonia;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;319;;
+Estonia;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;1;;
+Estonia;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;840;;
+Estonia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;2722;;
+Estonia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;3274;;
+Estonia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;461;;
+Estonia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;283;;
+Estonia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;313;;
+Estonia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;259;;
+Estonia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;111;;
+Estonia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;1074;;
+Estonia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;2799;;
+Estonia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;887;;
+Estonia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;158;;
+Estonia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;52;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;19;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;9;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Estonia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;4;;
+Estonia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;8;;
+Estonia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;49;;
+Estonia;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;101;;
+Estonia;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;64;;
+Estonia;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;1;;
+Estonia;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;275;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;1605;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;1509;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;155;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;1;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;4;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;11;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;7;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;2;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;9;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;23;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;10;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;5;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;2;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;3;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;1;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;12;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;2;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;12;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;52;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;30;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;4;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;13;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;4;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;7;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;30;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;28;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;1;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;3;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;8;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;37;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;13;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;4;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;3;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;5;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;7;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;14;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;56;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;48;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;5;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;17;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;1552;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;5901;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;3797;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;166;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;13;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;19;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;8;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;9;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;141;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;478;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;485;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;8;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;95;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;295;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;176;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;6;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;1;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;32;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;29;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;73;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;167;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;87;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;7;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;25;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;62;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;25;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;1;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;2;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;7;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;13;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;24;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;36;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;29;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;13;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;30;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;26;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;4;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;13;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;9;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;7;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;18;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;17;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;4;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;5;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;23;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;25;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;12;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;74;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;66;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;13;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;17;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;73;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;64;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;10;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;8;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;16;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;10;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;21;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;58;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;48;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;81;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;100;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;2669;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;9687;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;5904;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;160;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;38;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;56;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;10;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;12;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;8;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;40;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;41;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;56;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;161;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;96;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;5;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;47;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;339;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;276;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;24;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;9;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;9;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;4;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;7;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;6;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;8;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;4;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;17;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;22;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;9;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;18;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;54;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;36;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;7;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;8;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;3;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;29;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;53;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;11;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;5;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;45;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;62;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;12;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;4;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;5;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;58;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;173;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;178;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;9;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;10;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;20;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;20;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;234;;
+Estonia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;614;;
+Estonia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;570;;
+Estonia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;64;;
+Estonia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;10;;
+Estonia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;71;;
+Estonia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;72;;
+Estonia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;12;;
+Estonia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;712;;
+Estonia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;2162;;
+Estonia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;2289;;
+Estonia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;269;;
+Estonia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;1;;
+Estonia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;4;;
+Estonia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;34;;
+Estonia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;82;;
+Estonia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;24;;
+Estonia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;36;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;110;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;118;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;13;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;62;;
+Estonia;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;175;;
+Estonia;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;193;;
+Estonia;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;44;;
+Estonia;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;585;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1203;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1323;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;214;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;2;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;114;;
+Estonia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;327;;
+Estonia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;443;;
+Estonia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;90;;
+Estonia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;1087;;
+Estonia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;1399;;
+Estonia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;1521;;
+Estonia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;144;;
+Estonia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;39;;
+Estonia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;38;;
+Estonia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;74;;
+Estonia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;42;;
+Estonia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;17;;
+Estonia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;26;;
+Estonia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;6;;
+Estonia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;121;;
+Estonia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;575;;
+Estonia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;1086;;
+Estonia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;485;;
+Estonia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;3;;
+Estonia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;30;;
+Estonia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;65;;
+Estonia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;101;;
+Estonia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;56;;
+Estonia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;679;;
+Estonia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;1908;;
+Estonia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;2341;;
+Estonia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;328;;
+Estonia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;66;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;240;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;416;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;111;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;163;;
+Estonia;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;1155;;
+Estonia;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;2072;;
+Estonia;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;609;;
+Estonia;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;1;;
+Estonia;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;123;;
+Estonia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;605;;
+Estonia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;1103;;
+Estonia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;264;;
+Estonia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;188;;
+Estonia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;294;;
+Estonia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;505;;
+Estonia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;218;;
+Estonia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;50;;
+Estonia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;157;;
+Estonia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;187;;
+Estonia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;58;;
+Estonia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;2;;
+Estonia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;13;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;9;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Estonia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;4;;
+Estonia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Estonia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;21;;
+Estonia;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;54;;
+Estonia;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;57;;
+Estonia;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;15;;
+Estonia;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;6;;
+Estonia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;24;;
+Estonia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;18;;
+Estonia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Estonia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;7;;
+Estonia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;9;;
+Estonia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;98;;
+Estonia;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;326;;
+Estonia;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;174;;
+Estonia;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;6;;
+Estonia;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3;;
+Estonia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;15;;
+Estonia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;15;;
+Estonia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;5;;
+Estonia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;8;;
+Estonia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;8;;
+Estonia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;12;;
+Estonia;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;29;;
+Estonia;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;15;;
+Estonia;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;69;;
+Estonia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;118;;
+Estonia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;62;;
+Estonia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;34;;
+Estonia;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;99;;
+Estonia;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;46;;
+Estonia;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;3;;
+Estonia;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;71;;
+Estonia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;68;;
+Estonia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;26;;
+Estonia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;4;;
+Estonia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;33;;
+Estonia;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;40;;
+Estonia;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;16;;
+Estonia;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;42;;
+Estonia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;74;;
+Estonia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;12;;
+Estonia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;5;;
+Estonia;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;13;;
+Estonia;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;19;;
+Estonia;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;27;;
+Estonia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;56;;
+Estonia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;19;;
+Estonia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;31;;
+Estonia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;53;;
+Estonia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;21;;
+Estonia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;42;;
+Estonia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;127;;
+Estonia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;55;;
+Estonia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;9;;
+Estonia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;21;;
+Estonia;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;65;;
+Estonia;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;33;;
+Estonia;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;5;;
+Estonia;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;16;;
+Estonia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;69;;
+Estonia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;41;;
+Estonia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;9;;
+Estonia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;23;;
+Estonia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;23;;
+Estonia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;12;;
+Estonia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Estonia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;16;;
+Estonia;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;48;;
+Estonia;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;13;;
+Estonia;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;2;;
+Estonia;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1;;
+Estonia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;;
+Estonia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;381;;
+Estonia;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;537;;
+Estonia;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;277;;
+Estonia;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;28;;
+Estonia;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;2;;
+Estonia;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;61190;;
+Estonia;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;27648;;
+Estonia;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;37465;;
+Estonia;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;61599;;
+Estonia;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;4445;;
+Estonia;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;102888;;
+Estonia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;2;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;3;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;4;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;1;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;1;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;1;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;1;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;4153;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;1336;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;214;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;19;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;9;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;39;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;1;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;2;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;3;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;1;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;2;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;5;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;1;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;3;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;4;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;3;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;50;;
+Estonia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;396;;
+Estonia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;215;;
+Estonia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;22;;
+Estonia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;9;;
+Estonia;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;107;;
+Estonia;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;126;;
+Estonia;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;15;;
+Estonia;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;498;;
+Estonia;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;3858;;
+Estonia;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;1685;;
+Estonia;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;185;;
+Estonia;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;27;;
+Estonia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;270;;
+Estonia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;165;;
+Estonia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;33;;
+Estonia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;25;;
+Estonia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;202;;
+Estonia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;106;;
+Estonia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;16;;
+Estonia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;606;;
+Estonia;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;3417;;
+Estonia;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;1300;;
+Estonia;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;114;;
+Estonia;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;644;;
+Estonia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4963;;
+Estonia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1785;;
+Estonia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;138;;
+Estonia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;249;;
+Estonia;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;1861;;
+Estonia;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;798;;
+Estonia;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;79;;
+Estonia;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;158;;
+Estonia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;638;;
+Estonia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;241;;
+Estonia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;14;;
+Estonia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;343;;
+Estonia;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;1268;;
+Estonia;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;227;;
+Estonia;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;29;;
+Estonia;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;91;;
+Estonia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;610;;
+Estonia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;108;;
+Estonia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;10;;
+Estonia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;52;;
+Estonia;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;587;;
+Estonia;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;397;;
+Estonia;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;66;;
+Estonia;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;245;;
+Estonia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;1321;;
+Estonia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;521;;
+Estonia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;123;;
+Estonia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;222;;
+Estonia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;982;;
+Estonia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;292;;
+Estonia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;25;;
+Estonia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;163;;
+Estonia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;1520;;
+Estonia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;673;;
+Estonia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;83;;
+Estonia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Education ;Y15-29;2011;61;;
+Estonia;M;POP;TOTAL;Managers;Education ;Y30-49;2011;449;;
+Estonia;M;POP;TOTAL;Managers;Education ;Y50-64;2011;499;;
+Estonia;M;POP;TOTAL;Managers;Education ;Y65-84;2011;91;;
+Estonia;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;25;;
+Estonia;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;211;;
+Estonia;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;194;;
+Estonia;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;33;;
+Estonia;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;100;;
+Estonia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;427;;
+Estonia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;242;;
+Estonia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;43;;
+Estonia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;81;;
+Estonia;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;332;;
+Estonia;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;179;;
+Estonia;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;51;;
+Estonia;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Estonia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;18;;
+Estonia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;5;;
+Estonia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;;
+Estonia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;9;;
+Estonia;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;42;;
+Estonia;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;22;;
+Estonia;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;3;;
+Estonia;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;37;;
+Estonia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;134;;
+Estonia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;95;;
+Estonia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;27;;
+Estonia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;5;;
+Estonia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;20;;
+Estonia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;41;;
+Estonia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;8;;
+Estonia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;693;;
+Estonia;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;1243;;
+Estonia;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;695;;
+Estonia;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;136;;
+Estonia;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;102;;
+Estonia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;238;;
+Estonia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;173;;
+Estonia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;37;;
+Estonia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;10;;
+Estonia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;48;;
+Estonia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;30;;
+Estonia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;;
+Estonia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;213;;
+Estonia;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;382;;
+Estonia;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;279;;
+Estonia;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;67;;
+Estonia;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;285;;
+Estonia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;691;;
+Estonia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;211;;
+Estonia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;28;;
+Estonia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;115;;
+Estonia;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;288;;
+Estonia;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;163;;
+Estonia;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;27;;
+Estonia;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;30;;
+Estonia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;33;;
+Estonia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;11;;
+Estonia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;2;;
+Estonia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;2179;;
+Estonia;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;2808;;
+Estonia;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;458;;
+Estonia;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;85;;
+Estonia;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;343;;
+Estonia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;692;;
+Estonia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;104;;
+Estonia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;8;;
+Estonia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;15;;
+Estonia;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;72;;
+Estonia;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;36;;
+Estonia;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;21;;
+Estonia;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;1248;;
+Estonia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;2693;;
+Estonia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;1099;;
+Estonia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;328;;
+Estonia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;4;;
+Estonia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;72;;
+Estonia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;173;;
+Estonia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;46;;
+Estonia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;5;;
+Estonia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;551;;
+Estonia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;1442;;
+Estonia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;716;;
+Estonia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;137;;
+Estonia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;2;;
+Estonia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;804;;
+Estonia;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;2311;;
+Estonia;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;1767;;
+Estonia;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;763;;
+Estonia;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;6;;
+Estonia;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;223;;
+Estonia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;647;;
+Estonia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;457;;
+Estonia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;165;;
+Estonia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;3;;
+Estonia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;321;;
+Estonia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;768;;
+Estonia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;361;;
+Estonia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;102;;
+Estonia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;90;;
+Estonia;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;283;;
+Estonia;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;176;;
+Estonia;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;37;;
+Estonia;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;4;;
+Estonia;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Estonia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;4;;
+Estonia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;24;;
+Estonia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;9;;
+Estonia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;3;;
+Estonia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;18;;
+Estonia;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;43;;
+Estonia;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;14;;
+Estonia;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;4;;
+Estonia;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;80;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;378;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;261;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;22;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;33;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;170;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;165;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;21;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;1321;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;3518;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;1500;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;174;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;102;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;487;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;408;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;53;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;43;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;171;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;175;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;27;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;1202;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;2996;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;1212;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;101;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1589;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4402;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;931;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;68;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;545;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;1459;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;778;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;89;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;211;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;286;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;49;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;5;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;960;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;1029;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;243;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;25;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;185;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;363;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;67;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;13;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;152;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;676;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;450;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;222;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;513;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;876;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;383;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;76;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;287;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;460;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;145;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;12;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;531;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;1721;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;616;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;81;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;222;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;273;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;164;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;65;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;174;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;356;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;230;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;34;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;519;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;651;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;271;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;87;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;139;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;213;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;94;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;16;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;10;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;5;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;31;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;65;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;22;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;23;;
+Estonia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;61;;
+Estonia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;21;;
+Estonia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;3;;
+Estonia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;2;;
+Estonia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;12;;
+Estonia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;16;;
+Estonia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;631;;
+Estonia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;769;;
+Estonia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;299;;
+Estonia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;24;;
+Estonia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;6;;
+Estonia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;35;;
+Estonia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;9;;
+Estonia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;5;;
+Estonia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;13;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;38;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;21;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;3;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;20;;
+Estonia;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;64;;
+Estonia;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;38;;
+Estonia;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;6;;
+Estonia;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;763;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1061;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;364;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;31;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;1080;;
+Estonia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;1437;;
+Estonia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;627;;
+Estonia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;78;;
+Estonia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;231;;
+Estonia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;99;;
+Estonia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;42;;
+Estonia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;5;;
+Estonia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;178;;
+Estonia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;81;;
+Estonia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;30;;
+Estonia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;6;;
+Estonia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;96;;
+Estonia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;118;;
+Estonia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;28;;
+Estonia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;2;;
+Estonia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;8;;
+Estonia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;22;;
+Estonia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;27;;
+Estonia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;11;;
+Estonia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;87;;
+Estonia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;97;;
+Estonia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;37;;
+Estonia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;9;;
+Estonia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;263;;
+Estonia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;246;;
+Estonia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;69;;
+Estonia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;14;;
+Estonia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;66;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;143;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;103;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;13;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;14;;
+Estonia;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;24;;
+Estonia;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;34;;
+Estonia;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;13;;
+Estonia;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;14;;
+Estonia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;16;;
+Estonia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;15;;
+Estonia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;2;;
+Estonia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;109;;
+Estonia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;174;;
+Estonia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;37;;
+Estonia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;15;;
+Estonia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;22;;
+Estonia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;29;;
+Estonia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;15;;
+Estonia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;5;;
+Estonia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Estonia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;4;;
+Estonia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Estonia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;12;;
+Estonia;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;27;;
+Estonia;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;4;;
+Estonia;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;2;;
+Estonia;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;15;;
+Estonia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;28;;
+Estonia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;20;;
+Estonia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;5;;
+Estonia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;3;;
+Estonia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;12;;
+Estonia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;12;;
+Estonia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;6;;
+Estonia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;68;;
+Estonia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;124;;
+Estonia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;94;;
+Estonia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;30;;
+Estonia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;11;;
+Estonia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;7;;
+Estonia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;3;;
+Estonia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;3;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;8;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;4;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;2;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;20;;
+Estonia;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;38;;
+Estonia;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;21;;
+Estonia;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;11;;
+Estonia;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1510;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2023;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;729;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;74;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;225;;
+Estonia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;301;;
+Estonia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;155;;
+Estonia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;22;;
+Estonia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;1436;;
+Estonia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;758;;
+Estonia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;162;;
+Estonia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;15;;
+Estonia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;68;;
+Estonia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;31;;
+Estonia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;7;;
+Estonia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;2;;
+Estonia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;4;;
+Estonia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;16;;
+Estonia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;8;;
+Estonia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;35;;
+Estonia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;69;;
+Estonia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;110;;
+Estonia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;70;;
+Estonia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;35;;
+Estonia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;24;;
+Estonia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;11;;
+Estonia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;5;;
+Estonia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;1167;;
+Estonia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;1399;;
+Estonia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;1321;;
+Estonia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;230;;
+Estonia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;906;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;2238;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;791;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;65;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;61;;
+Estonia;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;275;;
+Estonia;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;321;;
+Estonia;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;102;;
+Estonia;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;128;;
+Estonia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;191;;
+Estonia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;166;;
+Estonia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;30;;
+Estonia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;68;;
+Estonia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;75;;
+Estonia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;80;;
+Estonia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;27;;
+Estonia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;62;;
+Estonia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;121;;
+Estonia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;86;;
+Estonia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;19;;
+Estonia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;2;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;6;;
+Estonia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;7;;
+Estonia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Estonia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;19;;
+Estonia;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;28;;
+Estonia;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;18;;
+Estonia;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;3;;
+Estonia;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;674;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;2867;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;1992;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;316;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;3;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;9;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;39;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;23;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;8;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;10;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;10;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;6;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;18;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;8;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;2;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;2;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;1;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;3;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;8;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;7;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;4;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;3;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;4;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;35;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;50;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;21;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;2;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;2;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;8;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;9;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;2;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;5;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;10;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;4;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;1;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;5;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;14;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;14;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;2;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;3;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;9;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;1;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;2;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;170;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;491;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;519;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;52;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;135;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;434;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;488;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;19;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;6990;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;13072;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;7943;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;697;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;175;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;611;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;654;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;50;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;76;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;197;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;240;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;25;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;9031;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;16800;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;6190;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;227;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2022;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;3391;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1266;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;81;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;255;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;878;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;824;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;119;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;37;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;92;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;52;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;8;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;93;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;199;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;79;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;10;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;8;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;6;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;53;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;202;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;259;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;69;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;113;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;187;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;126;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;20;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;353;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;642;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;260;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;22;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;36;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;130;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;112;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;37;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;23;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;74;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;125;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;53;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;16;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;82;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;124;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;40;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;41;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;95;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;91;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;32;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;122;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;404;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;290;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;15;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;4;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;112;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;253;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;118;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;5;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;754;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;2338;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;1516;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;91;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;254;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;1019;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;819;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;30;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;3845;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;5913;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;3519;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;199;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;49;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;234;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;286;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;30;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;68;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;379;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;273;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;17;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;650;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;1973;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;1522;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;110;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;303;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;954;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;578;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;35;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;1565;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;9237;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;7942;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;478;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;2;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;32;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;44;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;36;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;5;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;12;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;27;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;31;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;10;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;5;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;11;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;43;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;65;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;12;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;26;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;61;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;55;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;4;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;110;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;409;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;374;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;22;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;27;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;140;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;220;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;39;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;4;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;41;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;95;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;17;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;27;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;107;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;168;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;36;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;8;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;16;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;40;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;16;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;51;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;133;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;70;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;9;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;2;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;16;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;6;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;42;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;110;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;80;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;6;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;490;;
+Estonia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;813;;
+Estonia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;627;;
+Estonia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;44;;
+Estonia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;55;;
+Estonia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;147;;
+Estonia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;117;;
+Estonia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;20;;
+Estonia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;1276;;
+Estonia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;1450;;
+Estonia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;1159;;
+Estonia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;156;;
+Estonia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;20;;
+Estonia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;37;;
+Estonia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;49;;
+Estonia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;14;;
+Estonia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;87;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;166;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;126;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;16;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;871;;
+Estonia;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;977;;
+Estonia;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;467;;
+Estonia;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;53;;
+Estonia;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;938;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;956;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;610;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;100;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;393;;
+Estonia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;516;;
+Estonia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;421;;
+Estonia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;105;;
+Estonia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;328;;
+Estonia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;140;;
+Estonia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;103;;
+Estonia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;24;;
+Estonia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;11;;
+Estonia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;10;;
+Estonia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;10;;
+Estonia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;4;;
+Estonia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;4;;
+Estonia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;116;;
+Estonia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;307;;
+Estonia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;572;;
+Estonia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;292;;
+Estonia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;3;;
+Estonia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;33;;
+Estonia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;33;;
+Estonia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;33;;
+Estonia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;14;;
+Estonia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;516;;
+Estonia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;719;;
+Estonia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;703;;
+Estonia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;121;;
+Estonia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;151;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;307;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;267;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;53;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;66;;
+Estonia;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;242;;
+Estonia;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;517;;
+Estonia;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;264;;
+Estonia;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;52;;
+Estonia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;113;;
+Estonia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;156;;
+Estonia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;38;;
+Estonia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;86;;
+Estonia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;76;;
+Estonia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;142;;
+Estonia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;48;;
+Estonia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;52;;
+Estonia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;72;;
+Estonia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;62;;
+Estonia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;17;;
+Estonia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;4;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;8;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;9;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1;;
+Estonia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Estonia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;60;;
+Estonia;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;78;;
+Estonia;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;42;;
+Estonia;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;18;;
+Estonia;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;34;;
+Estonia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;84;;
+Estonia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;34;;
+Estonia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;3;;
+Estonia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;5;;
+Estonia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;25;;
+Estonia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;13;;
+Estonia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;273;;
+Estonia;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;552;;
+Estonia;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;202;;
+Estonia;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;9;;
+Estonia;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;1;;
+Estonia;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;16;;
+Estonia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;42;;
+Estonia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;27;;
+Estonia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;3;;
+Estonia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;7;;
+Estonia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;18;;
+Estonia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;8;;
+Estonia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;2;;
+Estonia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;149;;
+Estonia;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;262;;
+Estonia;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;61;;
+Estonia;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;6;;
+Estonia;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;123;;
+Estonia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;249;;
+Estonia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;64;;
+Estonia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4;;
+Estonia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;75;;
+Estonia;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;240;;
+Estonia;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;94;;
+Estonia;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;4;;
+Estonia;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;33;;
+Estonia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;28;;
+Estonia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;9;;
+Estonia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;72;;
+Estonia;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;95;;
+Estonia;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;11;;
+Estonia;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;3;;
+Estonia;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;24;;
+Estonia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;37;;
+Estonia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;6;;
+Estonia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;15;;
+Estonia;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;37;;
+Estonia;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;20;;
+Estonia;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;4;;
+Estonia;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;42;;
+Estonia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;105;;
+Estonia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;26;;
+Estonia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;2;;
+Estonia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;50;;
+Estonia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;99;;
+Estonia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;37;;
+Estonia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;70;;
+Estonia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;179;;
+Estonia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;49;;
+Estonia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;8;;
+Estonia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;17;;
+Estonia;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;45;;
+Estonia;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;27;;
+Estonia;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;5;;
+Estonia;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;11;;
+Estonia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;22;;
+Estonia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;10;;
+Estonia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;28;;
+Estonia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;37;;
+Estonia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;10;;
+Estonia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;15;;
+Estonia;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;42;;
+Estonia;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;18;;
+Estonia;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;1;;
+Estonia;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Estonia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;4;;
+Estonia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;2;;
+Estonia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;774;;
+Estonia;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;1311;;
+Estonia;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;406;;
+Estonia;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;26;;
+Estonia;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Estonia;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;597617;;
+Greece;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;527073;;
+Greece;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;697382;;
+Greece;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;1020968;;
+Greece;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;145655;;
+Greece;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;766261;;
+Greece;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;9;;
+Greece;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;128;;
+Greece;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;79;;
+Greece;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;3;;
+Greece;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;30;;
+Greece;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;9;;
+Greece;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;3;;
+Greece;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;410;;
+Greece;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;3861;;
+Greece;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;1800;;
+Greece;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;144;;
+Greece;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;2;;
+Greece;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;10;;
+Greece;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;144;;
+Greece;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;29;;
+Greece;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;;
+Greece;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;6;;
+Greece;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;84;;
+Greece;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;37;;
+Greece;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;146;;
+Greece;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;1125;;
+Greece;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;441;;
+Greece;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;30;;
+Greece;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2252;;
+Greece;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;17973;;
+Greece;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;7734;;
+Greece;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;537;;
+Greece;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;104;;
+Greece;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;839;;
+Greece;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;278;;
+Greece;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;9;;
+Greece;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;1884;;
+Greece;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;11993;;
+Greece;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;5524;;
+Greece;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;330;;
+Greece;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;168;;
+Greece;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;1173;;
+Greece;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;245;;
+Greece;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;11;;
+Greece;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;109;;
+Greece;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;2207;;
+Greece;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;710;;
+Greece;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;14;;
+Greece;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;7;;
+Greece;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;49;;
+Greece;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;14;;
+Greece;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;153;;
+Greece;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;997;;
+Greece;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;292;;
+Greece;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;13;;
+Greece;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;143;;
+Greece;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;857;;
+Greece;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;305;;
+Greece;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;20;;
+Greece;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;101;;
+Greece;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;1699;;
+Greece;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;1282;;
+Greece;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;29;;
+Greece;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Education ;Y15-29;2011;57;;
+Greece;F;POP;TOTAL;Managers;Education ;Y30-49;2011;806;;
+Greece;F;POP;TOTAL;Managers;Education ;Y50-64;2011;760;;
+Greece;F;POP;TOTAL;Managers;Education ;Y65-84;2011;26;;
+Greece;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;139;;
+Greece;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;1380;;
+Greece;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;703;;
+Greece;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;40;;
+Greece;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;116;;
+Greece;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;636;;
+Greece;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;228;;
+Greece;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;11;;
+Greece;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;23;;
+Greece;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;198;;
+Greece;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;66;;
+Greece;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;6;;
+Greece;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;15;;
+Greece;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;11;;
+Greece;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;123;;
+Greece;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;470;;
+Greece;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;87;;
+Greece;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Greece;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;25;;
+Greece;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;53;;
+Greece;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;9;;
+Greece;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;2049;;
+Greece;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;6873;;
+Greece;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;1061;;
+Greece;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;33;;
+Greece;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;1;;
+Greece;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;175;;
+Greece;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;644;;
+Greece;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;102;;
+Greece;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;4;;
+Greece;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;42;;
+Greece;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;235;;
+Greece;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;37;;
+Greece;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;703;;
+Greece;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;1819;;
+Greece;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;310;;
+Greece;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;6;;
+Greece;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2786;;
+Greece;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;8577;;
+Greece;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3529;;
+Greece;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;138;;
+Greece;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;405;;
+Greece;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;1307;;
+Greece;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;189;;
+Greece;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;4;;
+Greece;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;405;;
+Greece;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;1020;;
+Greece;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;195;;
+Greece;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;7;;
+Greece;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;3429;;
+Greece;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;10375;;
+Greece;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;1493;;
+Greece;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;89;;
+Greece;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;938;;
+Greece;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;2935;;
+Greece;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;394;;
+Greece;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;7;;
+Greece;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;25;;
+Greece;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;56;;
+Greece;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;12;;
+Greece;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;14423;;
+Greece;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;39279;;
+Greece;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;9110;;
+Greece;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;576;;
+Greece;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;3;;
+Greece;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;229;;
+Greece;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;589;;
+Greece;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;92;;
+Greece;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;5;;
+Greece;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1923;;
+Greece;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;13306;;
+Greece;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;4063;;
+Greece;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;88;;
+Greece;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;28403;;
+Greece;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;118311;;
+Greece;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;28058;;
+Greece;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;627;;
+Greece;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;1;;
+Greece;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;14696;;
+Greece;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;49582;;
+Greece;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;11051;;
+Greece;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;551;;
+Greece;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;1370;;
+Greece;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;5403;;
+Greece;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;1485;;
+Greece;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;161;;
+Greece;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Greece;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;547;;
+Greece;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;1450;;
+Greece;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;283;;
+Greece;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;26;;
+Greece;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;11;;
+Greece;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;59;;
+Greece;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;10;;
+Greece;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;149;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;526;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;71;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;28;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;77;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;19;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;1889;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;6534;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;1322;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;30;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;143;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1156;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;260;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;4;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;61;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;468;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;137;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;675;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;1754;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;292;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;8;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3098;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;9526;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1783;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;69;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;1173;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;3714;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;924;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;23;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;496;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;1080;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;267;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;6;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;893;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;3258;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;535;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;8;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;5871;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;21759;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;4109;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;95;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;1;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;329;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;1683;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;564;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;18;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;5389;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;15091;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;2996;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;93;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;623;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;1904;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;431;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;10;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;2505;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;21766;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;9043;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;134;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;634;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;4198;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;743;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;15;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;6354;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;22941;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;4352;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;72;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;1269;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;2615;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;319;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;12;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;261;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;904;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;240;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;15;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;13;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;40;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;12;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;6;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;16;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;5;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;177;;
+Greece;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;410;;
+Greece;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;79;;
+Greece;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Greece;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;39;;
+Greece;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;142;;
+Greece;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;30;;
+Greece;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;3106;;
+Greece;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;10265;;
+Greece;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;1774;;
+Greece;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;41;;
+Greece;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;500;;
+Greece;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2570;;
+Greece;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;461;;
+Greece;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;7;;
+Greece;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;189;;
+Greece;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;617;;
+Greece;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;136;;
+Greece;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;2;;
+Greece;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;1396;;
+Greece;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;4103;;
+Greece;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;706;;
+Greece;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;17;;
+Greece;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;5685;;
+Greece;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;16154;;
+Greece;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2205;;
+Greece;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;57;;
+Greece;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;3175;;
+Greece;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;10485;;
+Greece;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;1783;;
+Greece;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;24;;
+Greece;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;3541;;
+Greece;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;8271;;
+Greece;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;2001;;
+Greece;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;79;;
+Greece;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;3655;;
+Greece;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;7407;;
+Greece;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;876;;
+Greece;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;26;;
+Greece;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;3910;;
+Greece;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;9980;;
+Greece;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;1480;;
+Greece;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;19;;
+Greece;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;299;;
+Greece;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;517;;
+Greece;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;70;;
+Greece;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;3884;;
+Greece;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;9544;;
+Greece;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;1748;;
+Greece;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;42;;
+Greece;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;3500;;
+Greece;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;8070;;
+Greece;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;1337;;
+Greece;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;41;;
+Greece;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;4810;;
+Greece;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;28146;;
+Greece;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;9631;;
+Greece;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;152;;
+Greece;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;2587;;
+Greece;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;7171;;
+Greece;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;1693;;
+Greece;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;31;;
+Greece;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;2374;;
+Greece;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;7180;;
+Greece;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;1897;;
+Greece;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;42;;
+Greece;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;1051;;
+Greece;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;3915;;
+Greece;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;1189;;
+Greece;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;90;;
+Greece;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;850;;
+Greece;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;2588;;
+Greece;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;543;;
+Greece;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;20;;
+Greece;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Greece;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2;;
+Greece;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Greece;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;23;;
+Greece;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;85;;
+Greece;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;33;;
+Greece;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;35;;
+Greece;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;183;;
+Greece;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;35;;
+Greece;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;5;;
+Greece;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;12;;
+Greece;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;5;;
+Greece;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;4151;;
+Greece;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;9388;;
+Greece;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;1787;;
+Greece;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;47;;
+Greece;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;47;;
+Greece;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;311;;
+Greece;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;57;;
+Greece;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;22;;
+Greece;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;85;;
+Greece;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;21;;
+Greece;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;124;;
+Greece;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;284;;
+Greece;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;54;;
+Greece;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;3;;
+Greece;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;54222;;
+Greece;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;142252;;
+Greece;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;34554;;
+Greece;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1521;;
+Greece;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;;
+Greece;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;2152;;
+Greece;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;3813;;
+Greece;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;537;;
+Greece;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;12;;
+Greece;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;29914;;
+Greece;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;48572;;
+Greece;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;12146;;
+Greece;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;388;;
+Greece;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;1879;;
+Greece;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;2468;;
+Greece;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;299;;
+Greece;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;13;;
+Greece;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;298;;
+Greece;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;766;;
+Greece;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;148;;
+Greece;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;3;;
+Greece;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;25;;
+Greece;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;90;;
+Greece;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;31;;
+Greece;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;4;;
+Greece;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;341;;
+Greece;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;387;;
+Greece;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;114;;
+Greece;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;4;;
+Greece;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;1603;;
+Greece;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;3900;;
+Greece;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;1040;;
+Greece;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;38;;
+Greece;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;8187;;
+Greece;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;14696;;
+Greece;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;2380;;
+Greece;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;63;;
+Greece;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;994;;
+Greece;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;3251;;
+Greece;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;1313;;
+Greece;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;54;;
+Greece;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;6710;;
+Greece;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;23833;;
+Greece;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;9445;;
+Greece;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;386;;
+Greece;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;1030;;
+Greece;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;2088;;
+Greece;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;396;;
+Greece;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;18;;
+Greece;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;16302;;
+Greece;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;20606;;
+Greece;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;4219;;
+Greece;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;192;;
+Greece;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;697;;
+Greece;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1992;;
+Greece;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1262;;
+Greece;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;67;;
+Greece;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Greece;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;7;;
+Greece;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Greece;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;5579;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;46949;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;42799;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;1884;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;2;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;32;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;180;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;93;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;4;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;2;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;59;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;302;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;175;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;6;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;23;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;123;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;49;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;1;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;3;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;16;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;6;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;2;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;5;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;3;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;60;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;261;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;108;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;3;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;24;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;348;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;109;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;2;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;1;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;6;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;6;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;13;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;6;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;3;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;8;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;45;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;19;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;16;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;62;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;32;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;3;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;4;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;21;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;6;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;6;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;21;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;10;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;3169;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;18310;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;8711;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;275;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;100;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;425;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;112;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;20;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;156;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;60;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;827;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;4488;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;1609;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;26;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1673;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;6913;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2548;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;115;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;86;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;235;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;55;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;449;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;1432;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;424;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;11;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;253;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;1384;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;250;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;8;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;9;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;33;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;14;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;2;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;1;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;6;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;167;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;611;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;157;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;2;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;39;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;146;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;49;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;5;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;196;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;724;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;303;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;8;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;7;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;34;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;23;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;19;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;179;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;68;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;15;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;98;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;55;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;3;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;115;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;978;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;944;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;49;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;4;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;4;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;50;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;20;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;15;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;83;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;36;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;1564;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;11596;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;5586;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;91;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;20;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;100;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;37;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;23;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;116;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;24;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;73;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;558;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;202;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;8;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;173;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;848;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;322;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;3;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;685;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;4177;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;1378;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;34;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;55;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;362;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;164;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;7;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;14;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;91;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;20;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;3;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;27;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;8;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;1;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;2;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;1;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;100;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;268;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;78;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;178;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;852;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;272;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;4;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;72;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;596;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;294;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;6;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;20;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;140;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;55;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;6;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;59;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;562;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;263;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;7;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;11;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;32;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;20;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;11;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;103;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;65;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;4;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;2740;;
+Greece;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;8491;;
+Greece;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;3842;;
+Greece;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;143;;
+Greece;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;15;;
+Greece;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;63;;
+Greece;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;33;;
+Greece;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;1928;;
+Greece;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;12123;;
+Greece;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;4831;;
+Greece;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;68;;
+Greece;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;94;;
+Greece;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;448;;
+Greece;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;194;;
+Greece;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;257;;
+Greece;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1318;;
+Greece;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;392;;
+Greece;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;8;;
+Greece;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;306;;
+Greece;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;1056;;
+Greece;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;416;;
+Greece;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;8;;
+Greece;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1340;;
+Greece;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;5138;;
+Greece;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1631;;
+Greece;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;27;;
+Greece;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;455;;
+Greece;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;1720;;
+Greece;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;592;;
+Greece;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;16;;
+Greece;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;5888;;
+Greece;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;25061;;
+Greece;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;9362;;
+Greece;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;171;;
+Greece;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;107;;
+Greece;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;405;;
+Greece;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;260;;
+Greece;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;4;;
+Greece;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;52;;
+Greece;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;577;;
+Greece;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;628;;
+Greece;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;19;;
+Greece;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;11;;
+Greece;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;16;;
+Greece;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;10;;
+Greece;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;1;;
+Greece;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;307;;
+Greece;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;583;;
+Greece;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;225;;
+Greece;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;7;;
+Greece;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;3450;;
+Greece;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;25176;;
+Greece;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;13734;;
+Greece;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;337;;
+Greece;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;1;;
+Greece;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;1173;;
+Greece;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;9419;;
+Greece;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;3805;;
+Greece;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;103;;
+Greece;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;173;;
+Greece;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;3215;;
+Greece;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;2294;;
+Greece;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;77;;
+Greece;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;493;;
+Greece;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;5207;;
+Greece;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;3293;;
+Greece;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;90;;
+Greece;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;111;;
+Greece;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;605;;
+Greece;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;278;;
+Greece;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;2;;
+Greece;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;106;;
+Greece;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;567;;
+Greece;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;315;;
+Greece;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;13;;
+Greece;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;4453;;
+Greece;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;28249;;
+Greece;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;17785;;
+Greece;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1031;;
+Greece;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Greece;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1;;
+Greece;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;;
+Greece;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Greece;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;568798;;
+Greece;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;121574;;
+Greece;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;349452;;
+Greece;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;812414;;
+Greece;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;85217;;
+Greece;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;803007;;
+Greece;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;35;;
+Greece;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;323;;
+Greece;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;210;;
+Greece;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;16;;
+Greece;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;4;;
+Greece;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;133;;
+Greece;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;102;;
+Greece;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;12;;
+Greece;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;815;;
+Greece;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;10075;;
+Greece;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;5949;;
+Greece;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;598;;
+Greece;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;2;;
+Greece;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;39;;
+Greece;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;391;;
+Greece;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;243;;
+Greece;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;12;;
+Greece;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;51;;
+Greece;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;247;;
+Greece;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;164;;
+Greece;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;15;;
+Greece;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;1079;;
+Greece;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;8947;;
+Greece;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;4433;;
+Greece;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;333;;
+Greece;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;4466;;
+Greece;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;34797;;
+Greece;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;17343;;
+Greece;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1350;;
+Greece;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;5;;
+Greece;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;175;;
+Greece;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;2242;;
+Greece;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;1618;;
+Greece;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;158;;
+Greece;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;4120;;
+Greece;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;24966;;
+Greece;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;11785;;
+Greece;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;851;;
+Greece;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;237;;
+Greece;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;2707;;
+Greece;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;939;;
+Greece;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;55;;
+Greece;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;66;;
+Greece;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;2755;;
+Greece;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;2118;;
+Greece;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;82;;
+Greece;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;6;;
+Greece;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;105;;
+Greece;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;39;;
+Greece;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;3;;
+Greece;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;198;;
+Greece;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;1925;;
+Greece;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;1095;;
+Greece;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;109;;
+Greece;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;241;;
+Greece;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;1730;;
+Greece;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;794;;
+Greece;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;74;;
+Greece;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;88;;
+Greece;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;1595;;
+Greece;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;2313;;
+Greece;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;109;;
+Greece;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Education ;Y15-29;2011;38;;
+Greece;M;POP;TOTAL;Managers;Education ;Y30-49;2011;887;;
+Greece;M;POP;TOTAL;Managers;Education ;Y50-64;2011;1608;;
+Greece;M;POP;TOTAL;Managers;Education ;Y65-84;2011;77;;
+Greece;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;61;;
+Greece;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;691;;
+Greece;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;757;;
+Greece;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;80;;
+Greece;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;226;;
+Greece;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;1324;;
+Greece;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;561;;
+Greece;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;41;;
+Greece;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;14;;
+Greece;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;223;;
+Greece;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;134;;
+Greece;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;15;;
+Greece;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;14;;
+Greece;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;9;;
+Greece;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Greece;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;134;;
+Greece;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;691;;
+Greece;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;284;;
+Greece;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;10;;
+Greece;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;22;;
+Greece;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;147;;
+Greece;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;58;;
+Greece;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;1;;
+Greece;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;1621;;
+Greece;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;8756;;
+Greece;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;2637;;
+Greece;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;120;;
+Greece;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;231;;
+Greece;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1242;;
+Greece;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;654;;
+Greece;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;24;;
+Greece;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;29;;
+Greece;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;292;;
+Greece;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;144;;
+Greece;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;3;;
+Greece;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;682;;
+Greece;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;3410;;
+Greece;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;1309;;
+Greece;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;119;;
+Greece;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1593;;
+Greece;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;9079;;
+Greece;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3778;;
+Greece;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;235;;
+Greece;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;410;;
+Greece;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;1954;;
+Greece;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;712;;
+Greece;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;54;;
+Greece;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;521;;
+Greece;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;1342;;
+Greece;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;513;;
+Greece;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;19;;
+Greece;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;4374;;
+Greece;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;17615;;
+Greece;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;3430;;
+Greece;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;243;;
+Greece;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;2;;
+Greece;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;646;;
+Greece;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;3373;;
+Greece;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;929;;
+Greece;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;50;;
+Greece;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;33;;
+Greece;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;60;;
+Greece;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;25;;
+Greece;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;2;;
+Greece;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;9087;;
+Greece;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;45335;;
+Greece;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;22464;;
+Greece;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;2988;;
+Greece;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;13;;
+Greece;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;161;;
+Greece;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;754;;
+Greece;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;249;;
+Greece;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;20;;
+Greece;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1022;;
+Greece;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;9552;;
+Greece;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;5754;;
+Greece;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;348;;
+Greece;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;5851;;
+Greece;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;51743;;
+Greece;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;27645;;
+Greece;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;1096;;
+Greece;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;3167;;
+Greece;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;28193;;
+Greece;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;14930;;
+Greece;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;2199;;
+Greece;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;6;;
+Greece;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;1610;;
+Greece;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;6427;;
+Greece;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;2879;;
+Greece;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;282;;
+Greece;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;686;;
+Greece;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;5232;;
+Greece;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;3104;;
+Greece;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;1577;;
+Greece;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;9;;
+Greece;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;8;;
+Greece;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;42;;
+Greece;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;18;;
+Greece;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;125;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;503;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;203;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;8;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;52;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;263;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;108;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;1;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;2664;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;10509;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;3986;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;126;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;468;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2569;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1339;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;14;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;73;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;674;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;374;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;6;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;989;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;3716;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;1413;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;60;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2220;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;8633;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2642;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;149;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;3551;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;11786;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;5859;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;259;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;861;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;1741;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;448;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;9;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;2432;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;7766;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;2230;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;31;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;3670;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;19534;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;6789;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;195;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;388;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;2283;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;844;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;52;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;3413;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;11294;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;4208;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;209;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;482;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;2004;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;851;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;56;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1561;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;14107;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;9419;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;207;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;534;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;4063;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;1002;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;21;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;1369;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;7460;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;2363;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;42;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;2473;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;3747;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;656;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;43;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;394;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;1220;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;310;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;30;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;3;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;2;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;2;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;18;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;9;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;115;;
+Greece;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;301;;
+Greece;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;91;;
+Greece;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Greece;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;33;;
+Greece;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;132;;
+Greece;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;34;;
+Greece;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;1;;
+Greece;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;2099;;
+Greece;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;7847;;
+Greece;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;2114;;
+Greece;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;31;;
+Greece;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;251;;
+Greece;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1543;;
+Greece;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;836;;
+Greece;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;;
+Greece;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;120;;
+Greece;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;608;;
+Greece;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;241;;
+Greece;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;3;;
+Greece;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;452;;
+Greece;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;1538;;
+Greece;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;379;;
+Greece;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;12;;
+Greece;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;5723;;
+Greece;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;14556;;
+Greece;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2776;;
+Greece;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;82;;
+Greece;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;2613;;
+Greece;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;10082;;
+Greece;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;4222;;
+Greece;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;42;;
+Greece;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;2259;;
+Greece;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;6222;;
+Greece;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;2160;;
+Greece;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;115;;
+Greece;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;1571;;
+Greece;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;3331;;
+Greece;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;810;;
+Greece;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;18;;
+Greece;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;1626;;
+Greece;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;5974;;
+Greece;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;2101;;
+Greece;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;37;;
+Greece;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;49;;
+Greece;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;157;;
+Greece;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;44;;
+Greece;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;1;;
+Greece;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;1138;;
+Greece;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;3125;;
+Greece;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;964;;
+Greece;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;35;;
+Greece;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;1373;;
+Greece;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;3245;;
+Greece;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;924;;
+Greece;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;38;;
+Greece;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1867;;
+Greece;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;14470;;
+Greece;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;8286;;
+Greece;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;187;;
+Greece;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;461;;
+Greece;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;1783;;
+Greece;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;735;;
+Greece;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;18;;
+Greece;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;353;;
+Greece;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;1778;;
+Greece;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;1018;;
+Greece;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;24;;
+Greece;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;784;;
+Greece;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;3714;;
+Greece;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;1439;;
+Greece;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;127;;
+Greece;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;231;;
+Greece;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;938;;
+Greece;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;295;;
+Greece;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;10;;
+Greece;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Greece;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Greece;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;53;;
+Greece;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;20;;
+Greece;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;;
+Greece;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;110;;
+Greece;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;781;;
+Greece;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;414;;
+Greece;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;17;;
+Greece;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;13;;
+Greece;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;63;;
+Greece;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;39;;
+Greece;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;3;;
+Greece;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;2361;;
+Greece;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;8377;;
+Greece;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;2538;;
+Greece;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;98;;
+Greece;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;77;;
+Greece;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;445;;
+Greece;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;257;;
+Greece;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;3;;
+Greece;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;25;;
+Greece;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;192;;
+Greece;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;116;;
+Greece;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;;
+Greece;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;123;;
+Greece;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;481;;
+Greece;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;224;;
+Greece;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;10;;
+Greece;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;37976;;
+Greece;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;117855;;
+Greece;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;40166;;
+Greece;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2359;;
+Greece;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;4;;
+Greece;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;1366;;
+Greece;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;4738;;
+Greece;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;1783;;
+Greece;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;38;;
+Greece;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;32585;;
+Greece;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;48337;;
+Greece;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;14576;;
+Greece;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;556;;
+Greece;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;1497;;
+Greece;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;3075;;
+Greece;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;560;;
+Greece;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;14;;
+Greece;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;233;;
+Greece;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;841;;
+Greece;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;324;;
+Greece;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;5;;
+Greece;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;24;;
+Greece;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;120;;
+Greece;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;65;;
+Greece;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;5;;
+Greece;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;125;;
+Greece;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;248;;
+Greece;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;112;;
+Greece;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;5;;
+Greece;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;4401;;
+Greece;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;10828;;
+Greece;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;3526;;
+Greece;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;136;;
+Greece;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;36839;;
+Greece;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;88336;;
+Greece;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;9006;;
+Greece;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;346;;
+Greece;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;566;;
+Greece;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;2490;;
+Greece;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;1422;;
+Greece;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;137;;
+Greece;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;1154;;
+Greece;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;5601;;
+Greece;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;3148;;
+Greece;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;87;;
+Greece;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;2;;
+Greece;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;1133;;
+Greece;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;2260;;
+Greece;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;686;;
+Greece;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;33;;
+Greece;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;2612;;
+Greece;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;6341;;
+Greece;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;1897;;
+Greece;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;187;;
+Greece;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;46;;
+Greece;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;247;;
+Greece;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;215;;
+Greece;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;26;;
+Greece;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;7;;
+Greece;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;9;;
+Greece;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;;
+Greece;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;23686;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;115499;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;82777;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;5453;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;11;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;108;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;360;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;174;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;13;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;4;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;4;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;6;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;20;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;14;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;2;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;159;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;660;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;287;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;18;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;2;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;2;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;1;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;159;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;662;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;436;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;21;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;1;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;1;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;1;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;1;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;7;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;42;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;26;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;2;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;1;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;18;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;7;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;735;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;2603;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;1396;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;78;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;123;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;844;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;659;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;23;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;5;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;27;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;25;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;2;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;8;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;48;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;49;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;3;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;4;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;23;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;15;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;17;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;83;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;42;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;2;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;122;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;385;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;179;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;14;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;179;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;503;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;162;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;6;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;275;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;1058;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;454;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;5;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;21140;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;75420;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;35930;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;1079;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1682;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;6715;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2758;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;28;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;343;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1845;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1032;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;17;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;43977;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;143515;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;61758;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;1186;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;16259;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;43837;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;17150;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;533;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;711;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;3370;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;1740;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;32;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;1033;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;2826;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;1186;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;43;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;1241;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;5813;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;2235;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;55;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;39;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;198;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;65;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;65;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;61;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;26;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;882;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;2740;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;1114;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;43;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;264;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;893;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;263;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;6;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1659;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;6513;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;3905;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;106;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;62;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;345;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;213;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;4;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;227;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;1374;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;977;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;17;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;155;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;743;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;415;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;18;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;598;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;2471;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;1174;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;53;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;10;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;9;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;188;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;926;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;418;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;12;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;582;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;2654;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;1076;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;29;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;8000;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;33826;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;12716;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;320;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;303;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1755;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;762;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;5;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;370;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2527;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1059;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;18;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;2410;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;11742;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;5281;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;146;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3684;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;13930;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3659;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;83;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;11051;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;68288;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;31565;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;1155;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;319;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;949;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;307;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;12;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;92;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;545;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;209;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;5;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;39;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;215;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;71;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;10;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;35;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;15;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;225;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;888;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;339;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;8;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;830;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;3797;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;1780;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;51;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;718;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;6251;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;3459;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;66;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;349;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;1807;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;793;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;22;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;275;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;2133;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;1207;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;30;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;65;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;289;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;121;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;7;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;59;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;363;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;124;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;3;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;23;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;15;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;14410;;
+Greece;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;28549;;
+Greece;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;9470;;
+Greece;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;469;;
+Greece;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;204;;
+Greece;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;698;;
+Greece;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;288;;
+Greece;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;5;;
+Greece;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;7241;;
+Greece;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;19562;;
+Greece;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;6443;;
+Greece;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;136;;
+Greece;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;641;;
+Greece;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1748;;
+Greece;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;772;;
+Greece;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;6;;
+Greece;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1458;;
+Greece;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;5248;;
+Greece;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2491;;
+Greece;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;89;;
+Greece;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;6539;;
+Greece;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;14885;;
+Greece;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;5471;;
+Greece;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;123;;
+Greece;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;5455;;
+Greece;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;9313;;
+Greece;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2370;;
+Greece;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;95;;
+Greece;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;2486;;
+Greece;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;6699;;
+Greece;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;2053;;
+Greece;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;59;;
+Greece;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;6981;;
+Greece;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;12171;;
+Greece;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;3325;;
+Greece;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;138;;
+Greece;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;197;;
+Greece;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;562;;
+Greece;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;220;;
+Greece;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;6;;
+Greece;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;52;;
+Greece;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;262;;
+Greece;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;169;;
+Greece;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;1;;
+Greece;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;27;;
+Greece;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;32;;
+Greece;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;14;;
+Greece;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;436;;
+Greece;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;703;;
+Greece;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;195;;
+Greece;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;9;;
+Greece;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;1910;;
+Greece;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;7546;;
+Greece;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;3465;;
+Greece;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;116;;
+Greece;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;1;;
+Greece;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;1721;;
+Greece;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;11240;;
+Greece;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;6838;;
+Greece;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;161;;
+Greece;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;66;;
+Greece;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;400;;
+Greece;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;282;;
+Greece;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;16;;
+Greece;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;176;;
+Greece;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;999;;
+Greece;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;709;;
+Greece;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;23;;
+Greece;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;209;;
+Greece;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;733;;
+Greece;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;386;;
+Greece;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;15;;
+Greece;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;302;;
+Greece;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;872;;
+Greece;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;349;;
+Greece;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;14;;
+Greece;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;349;;
+Greece;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2107;;
+Greece;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;854;;
+Greece;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;49;;
+Greece;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Greece;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;4;;
+Greece;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;;
+Greece;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Greece;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;:;c;
+Spain;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Education ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Education ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Education ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Education ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;:;c;
+Spain;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;:;c;
+Spain;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;:;c;
+Spain;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;:;c;
+Spain;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;:;c;
+Spain;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;:;c;
+Spain;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Education ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Education ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Education ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Education ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Spain;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;:;c;
+Spain;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;:;c;
+Spain;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;:;c;
+Spain;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;:;c;
+Spain;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;:;c;
+Spain;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Education ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Education ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Education ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Education ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Finland;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Education ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Education ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Education ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Education ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Finland;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;2732088;;
+France;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;1586306;;
+France;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;3005177;;
+France;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;5142625;;
+France;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;1130338;;
+France;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;5876234;;
+France;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;16;u;
+France;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;21;u;
+France;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;4;u;
+France;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;73;;
+France;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;52;;
+France;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;7;u;
+France;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3;u;
+France;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1;u;
+France;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;11;u;
+France;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;11;u;
+France;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;4;u;
+France;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;10;u;
+France;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;22;u;
+France;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;4;u;
+France;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;76;;
+France;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;47;u;
+France;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;10;u;
+France;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;28;u;
+France;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;7;u;
+France;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;305;;
+France;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;202;;
+France;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;16;u;
+France;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;11;u;
+France;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;43;u;
+France;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;7;u;
+France;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;23;u;
+France;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;15;u;
+France;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;4;u;
+France;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;10;u;
+France;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;5;u;
+France;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;3;u;
+France;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;46;u;
+France;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;47;u;
+France;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;8;u;
+France;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;81;;
+France;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;56;;
+France;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;16041;;
+France;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;13194;;
+France;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;1036;;
+France;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;10;u;
+France;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;8;u;
+France;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;354;;
+France;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;151;;
+France;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;13;u;
+France;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;4;u;
+France;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;514;;
+France;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;496;;
+France;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;66;;
+France;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;66;;
+France;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;68;;
+France;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;1;u;
+France;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;164;;
+France;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;134;;
+France;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;17;u;
+France;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;u;
+France;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;12;u;
+France;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;9;u;
+France;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;1092;;
+France;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;1162;;
+France;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;478;;
+France;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;47;u;
+France;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;245;u;
+France;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;1536;u;
+France;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;989;u;
+France;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;87;u;
+France;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;4;u;
+France;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;67;u;
+France;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;200;u;
+France;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;74;u;
+France;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;4;u;
+France;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;8942;u;
+France;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;36106;u;
+France;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;10552;u;
+France;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;156;u;
+France;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;10;u;
+France;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;771;u;
+France;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;3231;u;
+France;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1005;u;
+France;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;8;u;
+France;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;470;u;
+France;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1872;u;
+France;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;548;u;
+France;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;11;u;
+France;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;4;u;
+France;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;1890;u;
+France;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;6576;u;
+France;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;2895;u;
+France;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;70;u;
+France;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;8;u;
+France;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;6613;u;
+France;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;28777;u;
+France;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;9772;u;
+France;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;257;u;
+France;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;43;u;
+France;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;2214;u;
+France;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;13191;u;
+France;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;5596;u;
+France;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;59;u;
+France;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;4607;u;
+France;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;19290;u;
+France;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;8007;u;
+France;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;427;u;
+France;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;27;u;
+France;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;5880;u;
+France;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;20563;u;
+France;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;5483;u;
+France;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;66;u;
+France;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;6;u;
+France;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;8317;u;
+France;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;43613;u;
+France;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;16088;u;
+France;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;146;u;
+France;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;17;u;
+France;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;804;u;
+France;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;4045;u;
+France;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;1773;u;
+France;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;34;u;
+France;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;13;u;
+France;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;11630;u;
+France;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;35597;u;
+France;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;10329;u;
+France;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;170;u;
+France;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;23;u;
+France;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;3229;u;
+France;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;14691;u;
+France;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;4591;u;
+France;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;125;u;
+France;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;1;u;
+France;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;8064;u;
+France;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;43400;u;
+France;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;29563;u;
+France;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;240;u;
+France;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;19;u;
+France;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Education ;Y15-29;2011;3208;u;
+France;F;POP;TOTAL;Managers;Education ;Y30-49;2011;19761;u;
+France;F;POP;TOTAL;Managers;Education ;Y50-64;2011;13759;u;
+France;F;POP;TOTAL;Managers;Education ;Y65-84;2011;119;u;
+France;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;49;u;
+France;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;5313;u;
+France;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;42025;u;
+France;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;30746;u;
+France;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;694;u;
+France;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;46;u;
+France;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;1261;u;
+France;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;5521;u;
+France;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;2446;u;
+France;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;67;u;
+France;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;8;u;
+France;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;3074;u;
+France;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;14235;u;
+France;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;6262;u;
+France;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;94;u;
+France;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;7;u;
+France;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;30;u;
+France;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;178;u;
+France;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;179;u;
+France;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;105;u;
+France;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;906;u;
+France;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;551;u;
+France;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;22;u;
+France;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;7442;u;
+France;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;16335;u;
+France;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;6577;u;
+France;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;493;u;
+France;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;441;;
+France;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;2058;;
+France;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;1024;;
+France;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;66;;
+France;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;75;;
+France;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;296;;
+France;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;84;;
+France;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;19081;;
+France;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;63320;;
+France;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;15979;;
+France;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;180;;
+France;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;25;u;
+France;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1968;;
+France;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;6544;;
+France;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2058;;
+France;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;8;u;
+France;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;743;;
+France;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2206;;
+France;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;658;;
+France;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;u;
+France;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;3758;;
+France;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;8374;;
+France;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;2627;;
+France;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;58;;
+France;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;15;u;
+France;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;22803;;
+France;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;67880;;
+France;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;25486;;
+France;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;608;;
+France;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;53;;
+France;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;2865;;
+France;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;13607;;
+France;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;5640;;
+France;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;45;u;
+France;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;2869;;
+France;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;6657;;
+France;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;2366;;
+France;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;65;;
+France;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;27;u;
+France;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;21599;;
+France;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;57494;;
+France;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;13990;;
+France;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;455;;
+France;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;71;;
+France;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;9601;;
+France;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;31697;;
+France;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;10351;;
+France;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;87;;
+France;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;18;u;
+France;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;1462;;
+France;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;4949;;
+France;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;2130;;
+France;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;65;;
+France;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;5;u;
+France;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;48973;;
+France;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;120441;;
+France;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;32734;;
+France;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;1120;;
+France;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;116;;
+France;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;8005;;
+France;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;19999;;
+France;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;5802;;
+France;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;155;;
+France;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;9;u;
+France;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;13483;;
+France;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;63319;;
+France;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;36891;;
+France;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;381;;
+France;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;57;;
+France;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;103999;;
+France;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;442211;;
+France;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;180377;;
+France;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;2154;;
+France;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;531;;
+France;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;48354;;
+France;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;130475;;
+France;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;73729;;
+France;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;1791;;
+France;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;152;;
+France;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;8997;;
+France;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;25951;;
+France;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;10773;;
+France;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;719;;
+France;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;116;;
+France;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;8741;;
+France;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;30168;;
+France;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;12719;;
+France;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;430;;
+France;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;85;;
+France;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;146;;
+France;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;726;;
+France;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;497;;
+France;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;12;u;
+France;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;7;u;
+France;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;214;;
+France;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1228;;
+France;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;662;;
+France;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;14;u;
+France;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;1;u;
+France;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;35014;;
+France;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;63638;;
+France;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;29277;;
+France;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;2721;;
+France;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;2433;;
+France;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;5723;;
+France;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;2733;;
+France;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;77;;
+France;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;18;u;
+France;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;152;;
+France;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;607;;
+France;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;324;;
+France;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;30796;;
+France;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;97936;;
+France;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;36702;;
+France;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;353;;
+France;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;89;;
+France;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2801;;
+France;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;10461;;
+France;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;4653;;
+France;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;21;u;
+France;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;2300;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;6576;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2095;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;25;u;
+France;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;3;u;
+France;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;7834;;
+France;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;22956;;
+France;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;8088;;
+France;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;101;;
+France;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;31;u;
+France;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;62320;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;123815;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;37682;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;547;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;77;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;11761;;
+France;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;50874;;
+France;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;19564;;
+France;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;103;;
+France;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;24;u;
+France;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;8858;;
+France;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;15971;;
+France;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;5284;;
+France;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;69;;
+France;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;15;u;
+France;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;11093;;
+France;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;28493;;
+France;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;13099;;
+France;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;102;;
+France;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;5;u;
+France;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;36108;;
+France;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;98383;;
+France;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;48764;;
+France;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;320;;
+France;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;62;;
+France;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;16142;;
+France;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;38758;;
+France;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;16606;;
+France;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;549;;
+France;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;31;u;
+France;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;46829;;
+France;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;97457;;
+France;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;30988;;
+France;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;402;;
+France;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;37;u;
+France;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;31269;;
+France;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;54021;;
+France;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;14071;;
+France;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;240;;
+France;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;30;u;
+France;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;44162;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;177939;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;110157;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;490;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;94;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;41159;;
+France;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;73038;;
+France;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;33239;;
+France;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;326;;
+France;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;61;;
+France;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;166566;;
+France;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;430456;;
+France;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;184629;;
+France;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;2112;;
+France;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;630;;
+France;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;12689;;
+France;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;22935;;
+France;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;7997;;
+France;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;142;;
+France;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;6;u;
+France;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;20614;;
+France;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;46637;;
+France;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;19059;;
+France;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;761;;
+France;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;522;;
+France;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;220;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1045;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;755;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;11;u;
+France;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;348;;
+France;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;2004;;
+France;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;994;;
+France;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;16;u;
+France;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;73744;;
+France;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;112171;;
+France;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;50688;;
+France;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;3235;;
+France;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;1450;;
+France;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;7599;;
+France;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;3977;;
+France;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;72;;
+France;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;4;u;
+France;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;258;;
+France;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;998;;
+France;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;475;;
+France;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;12;u;
+France;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;18953;;
+France;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;68412;;
+France;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;33528;;
+France;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;466;;
+France;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;92;;
+France;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1348;;
+France;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;3123;;
+France;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1440;;
+France;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;42;u;
+France;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;9;u;
+France;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;2346;;
+France;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;8058;;
+France;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2795;;
+France;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;45;u;
+France;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;8;u;
+France;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;14259;;
+France;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;48228;;
+France;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;18849;;
+France;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;399;;
+France;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;57;;
+France;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;39880;;
+France;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;114213;;
+France;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;46271;;
+France;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;825;;
+France;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;187;;
+France;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;26540;;
+France;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;87437;;
+France;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;32257;;
+France;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;440;;
+France;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;105;;
+France;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;19339;;
+France;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;30819;;
+France;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;11089;;
+France;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;252;;
+France;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;41;u;
+France;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;8821;;
+France;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;18060;;
+France;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;8288;;
+France;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;116;;
+France;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;33;u;
+France;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;42109;;
+France;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;78082;;
+France;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;39778;;
+France;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;332;;
+France;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;103;;
+France;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;10693;;
+France;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;23367;;
+France;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;10187;;
+France;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;173;;
+France;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;29;u;
+France;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;37205;;
+France;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;86270;;
+France;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;32260;;
+France;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;686;;
+France;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;155;;
+France;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;34558;;
+France;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;54240;;
+France;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;15738;;
+France;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;324;;
+France;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;117;;
+France;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;46966;;
+France;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;226952;;
+France;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;134383;;
+France;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;775;;
+France;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;149;;
+France;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;16088;;
+France;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;63223;;
+France;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;34348;;
+France;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;284;;
+France;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;37;u;
+France;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;26545;;
+France;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;91796;;
+France;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;48496;;
+France;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;461;;
+France;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;74;;
+France;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;6491;;
+France;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;16812;;
+France;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;7226;;
+France;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;191;;
+France;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;74;;
+France;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;13277;;
+France;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;39739;;
+France;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;20050;;
+France;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;383;;
+France;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;198;;
+France;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;313;;
+France;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1626;;
+France;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1306;;
+France;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;19;u;
+France;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;305;;
+France;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1851;;
+France;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1075;;
+France;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;42;u;
+France;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;4;u;
+France;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;76005;;
+France;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;129251;;
+France;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;74142;;
+France;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;4984;;
+France;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;1925;;
+France;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;4429;;
+France;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;2614;;
+France;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;167;;
+France;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;22;u;
+France;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;139;;
+France;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;210;;
+France;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;60;;
+France;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;31323;;
+France;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;52266;;
+France;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;18255;;
+France;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;304;;
+France;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;54;;
+France;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;469;;
+France;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;782;;
+France;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;233;;
+France;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;19;u;
+France;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;460;;
+France;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;967;;
+France;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;353;;
+France;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;u;
+France;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;2480;;
+France;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;5401;;
+France;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;1923;;
+France;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;106;;
+France;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;8;u;
+France;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;252534;;
+France;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;397447;;
+France;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;134698;;
+France;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4954;;
+France;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;578;;
+France;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;4535;;
+France;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;15280;;
+France;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;3097;;
+France;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;117;;
+France;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;30;u;
+France;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;86475;;
+France;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;96106;;
+France;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;36764;;
+France;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;2411;;
+France;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;332;;
+France;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;4855;;
+France;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;7486;;
+France;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;2767;;
+France;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;208;;
+France;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;40;u;
+France;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;7345;;
+France;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;11167;;
+France;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;4223;;
+France;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;233;;
+France;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;45;u;
+France;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;6965;;
+France;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;16608;;
+France;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;13226;;
+France;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;962;;
+France;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;100;;
+France;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;6735;;
+France;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;11977;;
+France;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;5184;;
+France;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;463;;
+France;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;78;;
+France;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;23190;;
+France;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;28619;;
+France;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;9528;;
+France;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;503;;
+France;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;57;;
+France;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;17981;;
+France;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;46789;;
+France;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;19113;;
+France;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;358;;
+France;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;38;u;
+France;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;12430;;
+France;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;23428;;
+France;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;10129;;
+France;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;271;;
+France;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;45;u;
+France;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;112202;;
+France;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;414239;;
+France;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;183231;;
+France;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;2459;;
+France;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;321;;
+France;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;5601;;
+France;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;7561;;
+France;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;2638;;
+France;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;160;;
+France;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;23;u;
+France;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;82832;;
+France;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;93856;;
+France;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;26992;;
+France;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;1025;;
+France;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;168;;
+France;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;3166;;
+France;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;14305;;
+France;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;8456;;
+France;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;222;;
+France;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;39;u;
+France;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;70;;
+France;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;162;;
+France;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;72;;
+France;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;14;u;
+France;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;153695;;
+France;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;164550;;
+France;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;72066;;
+France;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;5666;;
+France;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;12801;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;71923;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;59292;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;5542;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;779;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;4;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;57;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;8;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;319;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;1056;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;723;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;66;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;8;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;12;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;16;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;17;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;33;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;4;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;47;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;262;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;174;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;18;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;803;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1947;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;963;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;69;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;12;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;28;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;86;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;99;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;24;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;151;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;252;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;199;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;31;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;8;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;13;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;51;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;44;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;4;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;46;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;65;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;108;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;4;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;3;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;50;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;246;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;130;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;10;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;154;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;885;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;431;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;20;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;1551;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;2479;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;948;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;70;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;14;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;759;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;1406;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;616;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;31;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;15;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;800;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;545;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;251;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;29;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;15;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;752;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;1481;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;845;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;38;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;11;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;1056;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;631;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;115;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;41;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;4;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;461;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;912;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;430;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;33;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;16;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;60;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;161;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;198;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;4;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;u;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;15501;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;11484;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;6432;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;1878;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;160;;
+France;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;337;;
+France;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;223;;
+France;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;16;u;
+France;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;14;u;
+France;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;46;u;
+France;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;11;u;
+France;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;3;u;
+France;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;16677;;
+France;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;55207;;
+France;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;25458;;
+France;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;1206;;
+France;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;334;;
+France;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;100;;
+France;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;157;;
+France;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;63;;
+France;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;4;u;
+France;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;63;;
+France;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;205;;
+France;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;85;;
+France;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;u;
+France;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;5438;;
+France;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;10827;;
+France;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;4444;;
+France;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;275;;
+France;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;44;u;
+France;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;6270;;
+France;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;14536;;
+France;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;7720;;
+France;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;457;;
+France;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;110;;
+France;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;430;;
+France;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;1198;;
+France;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;447;;
+France;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;25;u;
+France;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;1284;;
+France;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;2487;;
+France;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;1358;;
+France;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;47;u;
+France;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;11;u;
+France;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;721;;
+France;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;2336;;
+France;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;1100;;
+France;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;46;u;
+France;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;7;u;
+France;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;205;;
+France;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;636;;
+France;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;488;;
+France;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;10;u;
+France;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;131;;
+France;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;432;;
+France;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;272;;
+France;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;12;u;
+France;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;5;u;
+France;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;590;;
+France;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;1562;;
+France;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;687;;
+France;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;38;u;
+France;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;8;u;
+France;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;2974;;
+France;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;5384;;
+France;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;1713;;
+France;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;60;;
+France;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;20;u;
+France;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1257;;
+France;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;5850;;
+France;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;4475;;
+France;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;39;u;
+France;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;16;u;
+France;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;1183;;
+France;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;3163;;
+France;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;1716;;
+France;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;48;u;
+France;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;8;u;
+France;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;5988;;
+France;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;18102;;
+France;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;8605;;
+France;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;109;;
+France;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;54;;
+France;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;737;;
+France;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;2264;;
+France;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;1118;;
+France;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;82;;
+France;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;9;u;
+France;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;3582;;
+France;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;11793;;
+France;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;6115;;
+France;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;268;;
+France;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;90;;
+France;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;33;u;
+France;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;189;;
+France;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;238;;
+France;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;6;u;
+France;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;10;u;
+France;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;68;;
+France;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;32;u;
+France;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;18999;;
+France;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;30140;;
+France;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;17193;;
+France;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;1265;;
+France;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;734;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;2553;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;1032;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;34;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;8;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;30;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;141;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;49;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;29341;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;138280;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;72013;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;1069;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;263;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;159;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;363;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;174;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;7;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;12;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;360;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1512;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;511;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;45;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;7;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;593;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;1517;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;653;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;127;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;27;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;7981;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;23828;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;9419;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;354;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;89;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;8244;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;29706;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;11368;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;314;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;59;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;1701;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;2754;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;1029;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;16;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;7;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;452;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;1519;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;887;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;37;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;330;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;1401;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;760;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;32;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;3;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;127;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;418;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;220;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;15;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;1;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;2121;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;6645;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;3253;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;93;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;13;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;15124;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;22988;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;6565;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;151;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;54;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;517;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;1521;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;1072;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;16;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;4;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;612;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;1953;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;957;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;3;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;15;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;2145;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;7786;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;3559;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;83;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;15;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;144;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;357;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;177;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;4;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;4;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;1132;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;4361;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;2573;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;121;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;49;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;33;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;170;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;171;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;4;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;11;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;11;u;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;21215;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;31866;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;22750;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;1548;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;575;;
+France;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;3011;;
+France;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;2642;;
+France;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;80;;
+France;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;19;u;
+France;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;77;;
+France;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;230;;
+France;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;96;;
+France;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;3956;;
+France;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;18808;;
+France;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;11104;;
+France;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;132;;
+France;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;32;u;
+France;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;119;;
+France;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;410;;
+France;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;382;;
+France;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;841;;
+France;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;3140;;
+France;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1616;;
+France;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;29;u;
+France;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;4;u;
+France;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;794;;
+France;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;2925;;
+France;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;1920;;
+France;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;73;;
+France;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;19;u;
+France;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;21458;;
+France;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;46838;;
+France;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;19218;;
+France;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;286;;
+France;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;53;;
+France;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;2852;;
+France;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;8545;;
+France;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;4130;;
+France;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;71;;
+France;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;5;u;
+France;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;20997;;
+France;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;48743;;
+France;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;21412;;
+France;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;333;;
+France;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;50;;
+France;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;445;;
+France;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;1844;;
+France;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;1323;;
+France;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;47;u;
+France;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;7;u;
+France;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;1027;;
+France;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;3592;;
+France;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;3408;;
+France;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;46;u;
+France;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;2248;;
+France;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;9186;;
+France;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;7546;;
+France;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;159;;
+France;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;13;u;
+France;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;1805;;
+France;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;6681;;
+France;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;4668;;
+France;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;138;;
+France;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;6;u;
+France;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;24418;;
+France;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;93221;;
+France;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;51816;;
+France;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;713;;
+France;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;93;;
+France;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;19383;;
+France;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;104844;;
+France;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;69872;;
+France;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;869;;
+France;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;155;;
+France;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;19932;;
+France;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;85781;;
+France;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;51979;;
+France;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;491;;
+France;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;61;;
+France;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;88871;;
+France;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;338328;;
+France;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;217823;;
+France;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;3951;;
+France;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;949;;
+France;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;1518;;
+France;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;4435;;
+France;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;2849;;
+France;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;37;u;
+France;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;8;u;
+France;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;5703;;
+France;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;19858;;
+France;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;11743;;
+France;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;432;;
+France;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;279;;
+France;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;5722;;
+France;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;52081;;
+France;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;46528;;
+France;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1088;;
+France;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;300;;
+France;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;28;u;
+France;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;231;;
+France;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;174;;
+France;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;3;u;
+France;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;72641;;
+France;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;97891;;
+France;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;49624;;
+France;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;3318;;
+France;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+France;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+France;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+France;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+France;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;408442;;
+France;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;114490;;
+France;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;79205;;
+France;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;11759;;
+France;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+France;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;79;;
+France;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;2217733;;
+France;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;694330;;
+France;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;2471558;;
+France;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;3935517;;
+France;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;480113;;
+France;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;6154521;;
+France;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;108;;
+France;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;242;;
+France;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;54;;
+France;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;16;u;
+France;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;444;;
+France;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;1089;;
+France;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;224;;
+France;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;10;u;
+France;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;3;u;
+France;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;10;u;
+France;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;27;u;
+France;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;24;u;
+France;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;3;u;
+France;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;17;u;
+France;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;47;u;
+France;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;26;u;
+France;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;3;u;
+France;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;364;;
+France;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;443;;
+France;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;124;;
+France;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;332;;
+France;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;432;;
+France;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;89;;
+France;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;153;;
+France;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;474;;
+France;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;129;;
+France;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;1635;;
+France;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;1538;;
+France;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;301;;
+France;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;94;;
+France;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;205;;
+France;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;33;u;
+France;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;4;u;
+France;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;43;u;
+France;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;162;;
+France;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;41;u;
+France;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;35;u;
+France;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;111;;
+France;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;20;u;
+France;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;135;;
+France;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;377;;
+France;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;76;;
+France;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;3;u;
+France;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;453;;
+France;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;491;;
+France;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;151;;
+France;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;13;u;
+France;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;77273;;
+France;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;118822;;
+France;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;19202;;
+France;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;457;;
+France;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;233;;
+France;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;925;;
+France;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;1218;;
+France;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;233;;
+France;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;4;u;
+France;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;4;u;
+France;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;584;;
+France;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;1129;;
+France;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;229;;
+France;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;5;u;
+France;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;353;;
+France;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;511;;
+France;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;150;;
+France;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;576;;
+France;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;958;;
+France;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;257;;
+France;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;6;u;
+France;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;8;u;
+France;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;3;u;
+France;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;87;;
+France;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;u;
+France;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;4197;;
+France;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;5335;;
+France;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;3213;;
+France;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;223;;
+France;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;924;u;
+France;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;5500;u;
+France;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;3690;u;
+France;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;135;u;
+France;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;164;u;
+France;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;1023;u;
+France;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;648;u;
+France;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;35;u;
+France;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;18599;u;
+France;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;115981;u;
+France;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;55837;u;
+France;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;846;u;
+France;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;110;u;
+France;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1685;u;
+France;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;8195;u;
+France;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;5817;u;
+France;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;30;u;
+France;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;768;u;
+France;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;5034;u;
+France;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2263;u;
+France;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;22;u;
+France;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;9;u;
+France;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;10204;u;
+France;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;45031;u;
+France;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;23401;u;
+France;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;341;u;
+France;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;8;u;
+France;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;8723;u;
+France;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;68195;u;
+France;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;29722;u;
+France;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;649;u;
+France;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;35;u;
+France;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;3496;u;
+France;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;34466;u;
+France;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;20268;u;
+France;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;360;u;
+France;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;11;u;
+France;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;6650;u;
+France;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;37302;u;
+France;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;14727;u;
+France;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;426;u;
+France;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;22;u;
+France;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;17194;u;
+France;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;53564;u;
+France;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;14969;u;
+France;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;194;u;
+France;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;5;u;
+France;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;9723;u;
+France;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;64353;u;
+France;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;35030;u;
+France;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;435;u;
+France;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;37;u;
+France;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;851;u;
+France;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;5476;u;
+France;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;3224;u;
+France;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;125;u;
+France;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;7;u;
+France;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;17154;u;
+France;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;61601;u;
+France;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;25999;u;
+France;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;557;u;
+France;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;64;u;
+France;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;4377;u;
+France;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;23255;u;
+France;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;10342;u;
+France;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;300;u;
+France;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;35;u;
+France;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;6154;u;
+France;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;44346;u;
+France;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;37889;u;
+France;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;467;u;
+France;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;38;u;
+France;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Education ;Y15-29;2011;2711;u;
+France;M;POP;TOTAL;Managers;Education ;Y30-49;2011;17311;u;
+France;M;POP;TOTAL;Managers;Education ;Y50-64;2011;15253;u;
+France;M;POP;TOTAL;Managers;Education ;Y65-84;2011;276;u;
+France;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;1;u;
+France;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;2964;u;
+France;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;37195;u;
+France;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;43202;u;
+France;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;2372;u;
+France;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;86;u;
+France;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;1700;u;
+France;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;9619;u;
+France;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;4375;u;
+France;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;213;u;
+France;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;25;u;
+France;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;2331;u;
+France;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;15072;u;
+France;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;9198;u;
+France;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;214;u;
+France;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;14;u;
+France;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;5;u;
+France;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;59;u;
+France;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;32;u;
+France;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+France;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;144;u;
+France;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1368;u;
+France;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;879;u;
+France;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;161;u;
+France;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;53;u;
+France;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;8186;u;
+France;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;17840;u;
+France;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;12855;u;
+France;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;1288;u;
+France;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;524;;
+France;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;3142;;
+France;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;2272;;
+France;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;98;;
+France;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;11;u;
+France;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;187;;
+France;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;846;;
+France;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;578;;
+France;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;32989;;
+France;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;145592;;
+France;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;60449;;
+France;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;642;;
+France;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;102;;
+France;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3885;;
+France;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;15367;;
+France;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;10233;;
+France;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;15;u;
+France;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;7;u;
+France;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1166;;
+France;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;5029;;
+France;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2245;;
+France;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;30;u;
+France;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;8;u;
+France;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;13495;;
+France;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;36248;;
+France;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;14621;;
+France;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;323;;
+France;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;8;u;
+France;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;31223;;
+France;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;111286;;
+France;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;42301;;
+France;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;886;;
+France;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;55;;
+France;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;3742;;
+France;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;24857;;
+France;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;14924;;
+France;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;209;;
+France;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;6;u;
+France;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;2316;;
+France;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;5833;;
+France;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;2454;;
+France;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;108;;
+France;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;22;u;
+France;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;54266;;
+France;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;143139;;
+France;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;37439;;
+France;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;947;;
+France;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;106;;
+France;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;9888;;
+France;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;41463;;
+France;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;18517;;
+France;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;389;;
+France;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;36;u;
+France;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;1451;;
+France;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;5293;;
+France;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;2865;;
+France;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;84;;
+France;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;13;u;
+France;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;55590;;
+France;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;177518;;
+France;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;88973;;
+France;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;5860;;
+France;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;290;;
+France;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;7991;;
+France;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;23854;;
+France;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;9682;;
+France;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;434;;
+France;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;24;u;
+France;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;9419;;
+France;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;53288;;
+France;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;38673;;
+France;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;551;;
+France;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;52;;
+France;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;43289;;
+France;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;226161;;
+France;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;123992;;
+France;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;2466;;
+France;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;154;;
+France;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;18957;;
+France;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;66436;;
+France;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;62203;;
+France;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;3725;;
+France;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;218;;
+France;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;8078;;
+France;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;31645;;
+France;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;14632;;
+France;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;1258;;
+France;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;91;;
+France;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;6488;;
+France;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;29063;;
+France;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;15486;;
+France;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;3178;;
+France;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;746;;
+France;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;35;u;
+France;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;208;;
+France;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;104;;
+France;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;12;u;
+France;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;135;;
+France;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1439;;
+France;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;894;;
+France;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;36;u;
+France;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;3;u;
+France;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;30219;;
+France;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;48918;;
+France;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;26693;;
+France;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;3056;;
+France;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;4834;;
+France;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;12655;;
+France;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;6302;;
+France;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;75;;
+France;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;11;u;
+France;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;372;;
+France;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;1884;;
+France;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;992;;
+France;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;4;u;
+France;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;4;u;
+France;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;70005;;
+France;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;250226;;
+France;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;108040;;
+France;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;568;;
+France;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;73;;
+France;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;8805;;
+France;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;31587;;
+France;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;15883;;
+France;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;48;u;
+France;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;39;u;
+France;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;5519;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;18676;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;7606;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;55;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;42698;;
+France;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;103633;;
+France;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;38917;;
+France;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;394;;
+France;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;42;u;
+France;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;59348;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;141332;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;50730;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;780;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;84;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;16110;;
+France;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;66997;;
+France;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;33015;;
+France;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;208;;
+France;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;28;u;
+France;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;9990;;
+France;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;25702;;
+France;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;7379;;
+France;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;151;;
+France;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;20;u;
+France;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;23197;;
+France;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;47064;;
+France;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;24084;;
+France;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;136;;
+France;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;18;u;
+France;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;22743;;
+France;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;64669;;
+France;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;38804;;
+France;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;505;;
+France;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;53;;
+France;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;12257;;
+France;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;38007;;
+France;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;20014;;
+France;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;727;;
+France;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;57;;
+France;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;46134;;
+France;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;88261;;
+France;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;31328;;
+France;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;678;;
+France;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;90;;
+France;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;29222;;
+France;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;49510;;
+France;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;13955;;
+France;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;217;;
+France;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;40;u;
+France;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;29454;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;140283;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;79742;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;378;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;83;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;25018;;
+France;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;35034;;
+France;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;13352;;
+France;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;222;;
+France;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;43;u;
+France;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;34291;;
+France;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;109230;;
+France;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;47347;;
+France;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;374;;
+France;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;77;;
+France;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;19083;;
+France;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;32033;;
+France;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;8940;;
+France;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;156;;
+France;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;21;u;
+France;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;12541;;
+France;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;31825;;
+France;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;13213;;
+France;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;381;;
+France;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;194;;
+France;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;58;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;222;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;154;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;167;;
+France;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1202;;
+France;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;689;;
+France;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;15;u;
+France;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;72037;;
+France;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;88627;;
+France;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;46405;;
+France;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;3518;;
+France;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;428;;
+France;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;1229;;
+France;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;699;;
+France;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;22;u;
+France;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;77;;
+France;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;176;;
+France;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;112;;
+France;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;7;u;
+France;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;7080;;
+France;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;21428;;
+France;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;10014;;
+France;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;79;;
+France;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;11;u;
+France;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;675;;
+France;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1906;;
+France;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1069;;
+France;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;16;u;
+France;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;985;;
+France;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;3596;;
+France;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1441;;
+France;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;13;u;
+France;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;4;u;
+France;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;3180;;
+France;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;5930;;
+France;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;2174;;
+France;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;27;u;
+France;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;8;u;
+France;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;12221;;
+France;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;34653;;
+France;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;11274;;
+France;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;153;;
+France;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;26;u;
+France;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;21681;;
+France;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;73818;;
+France;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;37736;;
+France;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;310;;
+France;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;61;;
+France;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;8169;;
+France;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;15466;;
+France;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;4613;;
+France;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;122;;
+France;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;21;u;
+France;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;5194;;
+France;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;7394;;
+France;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;4028;;
+France;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;47;u;
+France;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;5;u;
+France;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;14917;;
+France;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;22874;;
+France;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;13574;;
+France;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;114;;
+France;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;21;u;
+France;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;2511;;
+France;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;4665;;
+France;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;2233;;
+France;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;30;u;
+France;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;5;u;
+France;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;11820;;
+France;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;15949;;
+France;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;4940;;
+France;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;100;;
+France;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;44;u;
+France;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;9634;;
+France;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;13203;;
+France;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;3250;;
+France;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;53;;
+France;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;12;u;
+France;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;16631;;
+France;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;77438;;
+France;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;40023;;
+France;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;233;;
+France;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;33;u;
+France;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;3808;;
+France;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;11669;;
+France;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;5518;;
+France;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;53;;
+France;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;11;u;
+France;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;3605;;
+France;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;11843;;
+France;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;6729;;
+France;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;90;;
+France;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;34;u;
+France;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;2789;;
+France;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;5794;;
+France;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;2344;;
+France;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;29;u;
+France;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;8;u;
+France;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;3074;;
+France;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;8169;;
+France;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;3763;;
+France;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;80;;
+France;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;12;u;
+France;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;57;;
+France;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;118;;
+France;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;55;;
+France;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;3;u;
+France;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;107;;
+France;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;917;;
+France;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;528;;
+France;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;29;u;
+France;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;23956;;
+France;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;23539;;
+France;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;13728;;
+France;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;1120;;
+France;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;1471;;
+France;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;3693;;
+France;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;2020;;
+France;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;107;;
+France;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;8;u;
+France;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;56;;
+France;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;152;;
+France;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;58;;
+France;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;7;u;
+France;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;7064;;
+France;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;14110;;
+France;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;6491;;
+France;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;150;;
+France;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;4;u;
+France;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;300;;
+France;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;746;;
+France;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;420;;
+France;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;21;u;
+France;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;1;u;
+France;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;441;;
+France;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1097;;
+France;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;449;;
+France;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;19;u;
+France;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;3799;;
+France;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;5814;;
+France;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;2522;;
+France;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;74;;
+France;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;11;u;
+France;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;119268;;
+France;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;246326;;
+France;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;94591;;
+France;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;3282;;
+France;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;192;;
+France;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;4173;;
+France;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;16993;;
+France;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;4873;;
+France;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;83;;
+France;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;4;u;
+France;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;86469;;
+France;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;116490;;
+France;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;40356;;
+France;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;1243;;
+France;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;107;;
+France;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;3870;;
+France;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;9896;;
+France;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;3566;;
+France;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;191;;
+France;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;30;u;
+France;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;3397;;
+France;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;7749;;
+France;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;4257;;
+France;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;157;;
+France;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;13;u;
+France;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;4743;;
+France;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;13991;;
+France;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;9123;;
+France;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;322;;
+France;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;16;u;
+France;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;4327;;
+France;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;16866;;
+France;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;8798;;
+France;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;533;;
+France;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;29;u;
+France;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;29774;;
+France;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;63873;;
+France;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;19714;;
+France;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;469;;
+France;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;39;u;
+France;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;37883;;
+France;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;101494;;
+France;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;22336;;
+France;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;228;;
+France;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;57;;
+France;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;7690;;
+France;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;16824;;
+France;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;7764;;
+France;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;270;;
+France;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;6;u;
+France;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;13203;;
+France;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;44250;;
+France;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;17073;;
+France;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;279;;
+France;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;47;u;
+France;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;5615;;
+France;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;8897;;
+France;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;2843;;
+France;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;127;;
+France;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;15;u;
+France;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;9707;;
+France;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;24731;;
+France;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;11557;;
+France;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;592;;
+France;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;52;;
+France;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;134;;
+France;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;639;;
+France;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;433;;
+France;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;23;u;
+France;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;62;;
+France;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;315;;
+France;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;171;;
+France;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;19;u;
+France;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;83907;;
+France;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;77030;;
+France;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;37191;;
+France;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;2471;;
+France;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;62676;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;206599;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;126447;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;5786;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;627;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;36;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;249;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;86;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;1798;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;4519;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;2619;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;90;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;11;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;46;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;107;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;101;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;8;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;164;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;373;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;236;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;17;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;2257;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;2741;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;1260;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;53;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3015;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4981;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2590;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;82;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;10;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;303;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;887;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;628;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;19;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;637;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;1156;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;678;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;13;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;8;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;55;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;198;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;120;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;3;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;3;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;196;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;281;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;255;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;17;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;1;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;516;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;1284;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;674;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;25;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;542;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;2186;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;1393;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;106;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;11;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;28814;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;33466;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;10671;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;211;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;16;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;7004;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;13099;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;6402;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;72;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;12;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;2328;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;2171;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;1077;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;35;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;16;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;5100;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;9976;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;3374;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;48;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;13;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;1594;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;2690;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;1077;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;40;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;3;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;1532;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;2455;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;1265;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;30;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;4;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;389;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2151;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1156;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;19;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;13;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;43;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;42;u;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;32839;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;25569;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;15487;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;2043;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;3656;;
+France;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;5479;;
+France;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;2719;;
+France;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;51;;
+France;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;4;u;
+France;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;439;;
+France;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;1640;;
+France;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;799;;
+France;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;16;u;
+France;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;4;u;
+France;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;138114;;
+France;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;325867;;
+France;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;142168;;
+France;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;2014;;
+France;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;268;;
+France;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3452;;
+France;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;6922;;
+France;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3147;;
+France;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;20;u;
+France;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;3070;;
+France;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;8108;;
+France;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3049;;
+France;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;39;u;
+France;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;3;u;
+France;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;312696;;
+France;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;544668;;
+France;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;209055;;
+France;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;3591;;
+France;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;410;;
+France;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;121711;;
+France;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;171966;;
+France;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;68729;;
+France;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1259;;
+France;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;143;;
+France;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;12464;;
+France;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;34892;;
+France;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;15560;;
+France;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;95;;
+France;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;20;u;
+France;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;6272;;
+France;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;9704;;
+France;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;5181;;
+France;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;143;;
+France;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;41;u;
+France;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;5098;;
+France;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;9611;;
+France;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;4542;;
+France;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;71;;
+France;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;11;u;
+France;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;1906;;
+France;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;4434;;
+France;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;2220;;
+France;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;29;u;
+France;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;4;u;
+France;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;2225;;
+France;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;5535;;
+France;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;2823;;
+France;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;54;;
+France;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;4;u;
+France;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;6245;;
+France;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;14573;;
+France;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;6027;;
+France;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;68;;
+France;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;15;u;
+France;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;47252;;
+France;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;59579;;
+France;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;17520;;
+France;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;244;;
+France;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;60;;
+France;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;19590;;
+France;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;60248;;
+France;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;31763;;
+France;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;368;;
+France;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;54;;
+France;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;11779;;
+France;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;12321;;
+France;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;6744;;
+France;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;68;;
+France;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;3;u;
+France;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;13072;;
+France;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;36911;;
+France;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;18980;;
+France;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;230;;
+France;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;63;;
+France;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;2956;;
+France;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;6928;;
+France;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;3661;;
+France;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;99;;
+France;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;15;u;
+France;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;7652;;
+France;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;21283;;
+France;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;11342;;
+France;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;357;;
+France;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;32;u;
+France;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;126;;
+France;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;672;;
+France;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;485;;
+France;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;4;u;
+France;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;42;u;
+France;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;171;;
+France;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;126;;
+France;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;6;u;
+France;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;119370;;
+France;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;130718;;
+France;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;65992;;
+France;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;4110;;
+France;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;6864;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;12782;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;5179;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;62;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;18;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;1166;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;4956;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;2302;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;35;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;120636;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;360852;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;142563;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;1268;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;246;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2769;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;5361;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2411;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;43;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;5;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;6373;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;27303;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;9701;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;120;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;8;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;30212;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;57340;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;22677;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;351;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;42;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;42028;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;105989;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;37769;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;557;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;80;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;75802;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;290732;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;115699;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;2159;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;219;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;8350;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;8880;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;2735;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;81;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;11;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;1843;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;3960;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;2013;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;43;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;1627;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;4553;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;2211;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;61;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;8;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;1010;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;2796;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;1155;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;10;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;5703;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;13696;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;6511;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;208;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;24;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;57619;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;68142;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;16124;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;311;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;26;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;4162;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;13211;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;7677;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;113;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;7;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;2780;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;3122;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;1494;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;31;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;8;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;4210;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;13887;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;6641;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;111;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;21;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;654;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;1851;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;843;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;22;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;2646;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;9001;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;4698;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;202;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;19;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;80;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;197;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;151;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;22;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;316;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;242;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;13;u;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;94893;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;110576;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;56229;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;3269;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;1067;;
+France;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;2016;;
+France;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;837;;
+France;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;3;u;
+France;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;1432;;
+France;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;3277;;
+France;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;976;;
+France;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;4;u;
+France;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;11744;;
+France;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;35191;;
+France;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;16075;;
+France;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;155;;
+France;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;27;u;
+France;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;277;;
+France;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;834;;
+France;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;435;;
+France;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;11;u;
+France;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;4884;;
+France;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;15422;;
+France;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;5395;;
+France;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;104;;
+France;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;1;u;
+France;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;25017;;
+France;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;33406;;
+France;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;11455;;
+France;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;223;;
+France;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;49;u;
+France;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;37962;;
+France;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;67936;;
+France;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;21249;;
+France;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;225;;
+France;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;50;;
+France;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;13106;;
+France;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;29477;;
+France;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;9668;;
+France;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;128;;
+France;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;32;u;
+France;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;21889;;
+France;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;27907;;
+France;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;10129;;
+France;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;250;;
+France;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;24;u;
+France;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;648;;
+France;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;1451;;
+France;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;754;;
+France;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;8;u;
+France;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;772;;
+France;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;1973;;
+France;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;1122;;
+France;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;24;u;
+France;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;8;u;
+France;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;2369;;
+France;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;7500;;
+France;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;4450;;
+France;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;55;;
+France;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;5;u;
+France;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;2384;;
+France;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;5043;;
+France;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;2317;;
+France;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;19;u;
+France;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;15;u;
+France;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;30416;;
+France;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;50357;;
+France;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;17538;;
+France;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;330;;
+France;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;17;u;
+France;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;15403;;
+France;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;62349;;
+France;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;31073;;
+France;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;248;;
+France;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;39;u;
+France;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;5247;;
+France;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;16794;;
+France;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;10039;;
+France;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;130;;
+France;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;8;u;
+France;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;14693;;
+France;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;42224;;
+France;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;22042;;
+France;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;266;;
+France;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;42;u;
+France;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;1130;;
+France;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;2962;;
+France;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;1306;;
+France;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;36;u;
+France;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;1934;;
+France;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;5284;;
+France;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;2439;;
+France;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;48;u;
+France;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;303;;
+France;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1826;;
+France;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1106;;
+France;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;21;u;
+France;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;3;u;
+France;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;21;u;
+France;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;143;;
+France;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;72;;
+France;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;71960;;
+France;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;61992;;
+France;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;25993;;
+France;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;1333;;
+France;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+France;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+France;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+France;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+France;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+France;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;421968;;
+France;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;65744;;
+France;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;59823;;
+France;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;9821;;
+France;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+France;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;95;;
+Croatia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;223491;;
+Croatia;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;125326;;
+Croatia;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;291649;;
+Croatia;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;413178;;
+Croatia;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;45087;;
+Croatia;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;317703;;
+Croatia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;1;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;272;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;803;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;77;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;16;;
+Croatia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;153;;
+Croatia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;57;;
+Croatia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;6;;
+Croatia;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;16;;
+Croatia;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;12;;
+Croatia;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;140;;
+Croatia;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;1546;;
+Croatia;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;720;;
+Croatia;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;17;;
+Croatia;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1;;
+Croatia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;14;;
+Croatia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;9;;
+Croatia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;6;;
+Croatia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;60;;
+Croatia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;42;;
+Croatia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;98;;
+Croatia;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;610;;
+Croatia;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;261;;
+Croatia;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;344;;
+Croatia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;3134;;
+Croatia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1399;;
+Croatia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;17;;
+Croatia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;25;;
+Croatia;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;334;;
+Croatia;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;147;;
+Croatia;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;263;;
+Croatia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;1181;;
+Croatia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;463;;
+Croatia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;15;;
+Croatia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;55;;
+Croatia;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;528;;
+Croatia;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;124;;
+Croatia;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;47;;
+Croatia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;834;;
+Croatia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;305;;
+Croatia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;3;;
+Croatia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;19;;
+Croatia;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;163;;
+Croatia;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;84;;
+Croatia;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;122;;
+Croatia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;1239;;
+Croatia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;601;;
+Croatia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;20;;
+Croatia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;78;;
+Croatia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;516;;
+Croatia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;140;;
+Croatia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;26;;
+Croatia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;404;;
+Croatia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;280;;
+Croatia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;11;;
+Croatia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Education ;Y15-29;2011;36;;
+Croatia;F;POP;TOTAL;Managers;Education ;Y30-49;2011;655;;
+Croatia;F;POP;TOTAL;Managers;Education ;Y50-64;2011;583;;
+Croatia;F;POP;TOTAL;Managers;Education ;Y65-84;2011;13;;
+Croatia;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;48;;
+Croatia;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;421;;
+Croatia;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;377;;
+Croatia;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;11;;
+Croatia;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;36;;
+Croatia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;249;;
+Croatia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;140;;
+Croatia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;111;;
+Croatia;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;659;;
+Croatia;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;268;;
+Croatia;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;11;;
+Croatia;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;7;;
+Croatia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Croatia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;2;;
+Croatia;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;12;;
+Croatia;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;2;;
+Croatia;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;148;;
+Croatia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;583;;
+Croatia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;162;;
+Croatia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;39;;
+Croatia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;217;;
+Croatia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;81;;
+Croatia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;1335;;
+Croatia;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;4107;;
+Croatia;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;1361;;
+Croatia;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;10;;
+Croatia;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;84;;
+Croatia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;340;;
+Croatia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;238;;
+Croatia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;94;;
+Croatia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;384;;
+Croatia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;145;;
+Croatia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;325;;
+Croatia;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;1025;;
+Croatia;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;326;;
+Croatia;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;4;;
+Croatia;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1649;;
+Croatia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4054;;
+Croatia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1329;;
+Croatia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;22;;
+Croatia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;149;;
+Croatia;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;891;;
+Croatia;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;409;;
+Croatia;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;272;;
+Croatia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;575;;
+Croatia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;212;;
+Croatia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;1560;;
+Croatia;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;4696;;
+Croatia;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;861;;
+Croatia;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;30;;
+Croatia;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;1559;;
+Croatia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;4246;;
+Croatia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;1075;;
+Croatia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;4;;
+Croatia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;51;;
+Croatia;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;194;;
+Croatia;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;67;;
+Croatia;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;3082;;
+Croatia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;7993;;
+Croatia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;2201;;
+Croatia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;92;;
+Croatia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;368;;
+Croatia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;883;;
+Croatia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;238;;
+Croatia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1553;;
+Croatia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;9345;;
+Croatia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;4530;;
+Croatia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;115;;
+Croatia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;11536;;
+Croatia;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;34178;;
+Croatia;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;15472;;
+Croatia;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;339;;
+Croatia;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;3739;;
+Croatia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;11950;;
+Croatia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;7114;;
+Croatia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;208;;
+Croatia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;603;;
+Croatia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;2261;;
+Croatia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;984;;
+Croatia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;41;;
+Croatia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;269;;
+Croatia;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;817;;
+Croatia;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;279;;
+Croatia;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;24;;
+Croatia;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;17;;
+Croatia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;111;;
+Croatia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;27;;
+Croatia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;29;;
+Croatia;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;64;;
+Croatia;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;23;;
+Croatia;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;166;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;610;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;216;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;41;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;199;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;80;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;2231;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;8823;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;3655;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;8;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;34;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;370;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;335;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;99;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;442;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;275;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;603;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;1888;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;778;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3915;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;10145;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2621;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;22;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;411;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;2320;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;862;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;377;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;1029;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;462;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;5;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;936;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;2380;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;537;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;6;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;2247;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;6623;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;1882;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;11;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;167;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;690;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;189;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;3;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;1645;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;4417;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;1652;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;19;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;382;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;994;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;298;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1343;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;7475;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;3340;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;34;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;368;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;1673;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;1177;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;4;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;8288;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;18277;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;8624;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;31;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;528;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;1118;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;369;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;4;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;279;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;736;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;355;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;59;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;1;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;5;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;9;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;4;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;28;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;12;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;49;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;103;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;46;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;3;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;224;;
+Croatia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;1048;;
+Croatia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;585;;
+Croatia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;40;;
+Croatia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;248;;
+Croatia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;130;;
+Croatia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;1665;;
+Croatia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;6770;;
+Croatia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;3724;;
+Croatia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;5;;
+Croatia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;78;;
+Croatia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;869;;
+Croatia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;820;;
+Croatia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;185;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;915;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;576;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;1035;;
+Croatia;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;3316;;
+Croatia;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;1217;;
+Croatia;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;5;;
+Croatia;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2812;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;8398;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2666;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;7;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;1048;;
+Croatia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;6066;;
+Croatia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;2302;;
+Croatia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;5;;
+Croatia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;1587;;
+Croatia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;2551;;
+Croatia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;1030;;
+Croatia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;6;;
+Croatia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;1062;;
+Croatia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;2198;;
+Croatia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;669;;
+Croatia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;2544;;
+Croatia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;7669;;
+Croatia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;3232;;
+Croatia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;5;;
+Croatia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;133;;
+Croatia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;427;;
+Croatia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;161;;
+Croatia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;2613;;
+Croatia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;7202;;
+Croatia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;2698;;
+Croatia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;23;;
+Croatia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;1187;;
+Croatia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;2127;;
+Croatia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;603;;
+Croatia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;5;;
+Croatia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;5181;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;12749;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;5633;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;33;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;458;;
+Croatia;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;1721;;
+Croatia;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;1398;;
+Croatia;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;5;;
+Croatia;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;464;;
+Croatia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;2559;;
+Croatia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;1919;;
+Croatia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;7;;
+Croatia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;3005;;
+Croatia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;2946;;
+Croatia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;678;;
+Croatia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;4;;
+Croatia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;331;;
+Croatia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;1041;;
+Croatia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;466;;
+Croatia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;13;;
+Croatia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;11;;
+Croatia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;79;;
+Croatia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;20;;
+Croatia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;103;;
+Croatia;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;219;;
+Croatia;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;98;;
+Croatia;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;81;;
+Croatia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;296;;
+Croatia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;150;;
+Croatia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;4;;
+Croatia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;9;;
+Croatia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;39;;
+Croatia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;17;;
+Croatia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;2014;;
+Croatia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;3901;;
+Croatia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;903;;
+Croatia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;11;;
+Croatia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;4;;
+Croatia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;65;;
+Croatia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;77;;
+Croatia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;14;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;102;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;59;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;65;;
+Croatia;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;328;;
+Croatia;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;139;;
+Croatia;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;33179;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;64806;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;13744;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;51;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;375;;
+Croatia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;778;;
+Croatia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;214;;
+Croatia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;18279;;
+Croatia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;26380;;
+Croatia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;8267;;
+Croatia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;218;;
+Croatia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;369;;
+Croatia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;466;;
+Croatia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;92;;
+Croatia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;97;;
+Croatia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;216;;
+Croatia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;76;;
+Croatia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;26;;
+Croatia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;142;;
+Croatia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;86;;
+Croatia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;32;;
+Croatia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;223;;
+Croatia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;333;;
+Croatia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;132;;
+Croatia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;951;;
+Croatia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;2064;;
+Croatia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;612;;
+Croatia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;21;;
+Croatia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1312;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;2256;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;702;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;26;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;375;;
+Croatia;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;3140;;
+Croatia;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;1862;;
+Croatia;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;4;;
+Croatia;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;1097;;
+Croatia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;7459;;
+Croatia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;3322;;
+Croatia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;31;;
+Croatia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;1;;
+Croatia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;441;;
+Croatia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;653;;
+Croatia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;213;;
+Croatia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;5;;
+Croatia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;6392;;
+Croatia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;6645;;
+Croatia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;1414;;
+Croatia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;60;;
+Croatia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;123;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;291;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;128;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;10;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;2;;
+Croatia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;23;;
+Croatia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;8;;
+Croatia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;38;;
+Croatia;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;71;;
+Croatia;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;30;;
+Croatia;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;1046;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;8234;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;6558;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;1949;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;25;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;12;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;51;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;25;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;3;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;17;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;30;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;11;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;3;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;4;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;40;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;19;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;1;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;1;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;6;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;4;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;26;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;241;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;91;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;17;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;5;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;6;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;1;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;6;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;2;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;2;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;12;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;5;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;1;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;3;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;2;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;30;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;147;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;50;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;3;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;3118;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;13241;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;4146;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;29;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;5;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;16;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;10;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;7;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;12;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;4;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;54;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;161;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;63;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;576;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1759;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;491;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;11;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;10;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;34;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;7;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;385;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;868;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;245;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;42;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;149;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;61;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;5;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;1;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;2;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;15;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;57;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;33;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;17;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;62;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;14;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;8;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;57;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;27;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;3;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;32;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;31;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;12;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;109;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;107;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;14;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;70;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;47;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;34;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;195;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;73;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;4;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;12;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;17;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;12;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;56;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;210;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;74;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;4;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;15;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;5;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;4346;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;19740;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;5566;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;12;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;14;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;36;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;20;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;11;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;52;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;11;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;109;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;373;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;95;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;68;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;367;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;96;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;49;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;209;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;116;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;7;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;13;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;9;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;1;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;2;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;3;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;21;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;38;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;10;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;16;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;45;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;14;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;7;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;60;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;20;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;2;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;46;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;38;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;27;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;333;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;286;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;8;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;15;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;7;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;91;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;429;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;174;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;4;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;12;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;5;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;648;;
+Croatia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;2953;;
+Croatia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;1192;;
+Croatia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;40;;
+Croatia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;2;;
+Croatia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;5;;
+Croatia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;44;;
+Croatia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;22;;
+Croatia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;2;;
+Croatia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;2359;;
+Croatia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;10907;;
+Croatia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;3880;;
+Croatia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;9;;
+Croatia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;12;;
+Croatia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;132;;
+Croatia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;121;;
+Croatia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;116;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;843;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;394;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;3;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;189;;
+Croatia;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;855;;
+Croatia;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;286;;
+Croatia;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;5;;
+Croatia;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;689;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2200;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;875;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;3;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;153;;
+Croatia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;831;;
+Croatia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;468;;
+Croatia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;1214;;
+Croatia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;3859;;
+Croatia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;1595;;
+Croatia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;9;;
+Croatia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;50;;
+Croatia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;176;;
+Croatia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;112;;
+Croatia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;33;;
+Croatia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;293;;
+Croatia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;161;;
+Croatia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;12;;
+Croatia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;121;;
+Croatia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;70;;
+Croatia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;117;;
+Croatia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;456;;
+Croatia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;241;;
+Croatia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;4;;
+Croatia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;803;;
+Croatia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;5292;;
+Croatia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;2171;;
+Croatia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;17;;
+Croatia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;181;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;1698;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;1143;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;11;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;389;;
+Croatia;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;5811;;
+Croatia;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;3675;;
+Croatia;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;9;;
+Croatia;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;348;;
+Croatia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;4557;;
+Croatia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;2675;;
+Croatia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;7;;
+Croatia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;84;;
+Croatia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;698;;
+Croatia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;417;;
+Croatia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;7;;
+Croatia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;92;;
+Croatia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;522;;
+Croatia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;230;;
+Croatia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;8;;
+Croatia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;523;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1125;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;139;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;9;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;5;;
+Croatia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;6;;
+Croatia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;45;;
+Croatia;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;130;;
+Croatia;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;83;;
+Croatia;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;4;;
+Croatia;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;7;;
+Croatia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;33;;
+Croatia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;21;;
+Croatia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;6;;
+Croatia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;1;;
+Croatia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;5;;
+Croatia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;4;;
+Croatia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;66;;
+Croatia;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;173;;
+Croatia;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;78;;
+Croatia;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2;;
+Croatia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;7;;
+Croatia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;9;;
+Croatia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;2;;
+Croatia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;9;;
+Croatia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;8;;
+Croatia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;6;;
+Croatia;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;17;;
+Croatia;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;18;;
+Croatia;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;88;;
+Croatia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;191;;
+Croatia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;64;;
+Croatia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;10;;
+Croatia;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;27;;
+Croatia;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;13;;
+Croatia;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;32;;
+Croatia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;66;;
+Croatia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;24;;
+Croatia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;28;;
+Croatia;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;50;;
+Croatia;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;9;;
+Croatia;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;22;;
+Croatia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;56;;
+Croatia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;31;;
+Croatia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;6;;
+Croatia;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;7;;
+Croatia;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;2;;
+Croatia;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;47;;
+Croatia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;77;;
+Croatia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;25;;
+Croatia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;18;;
+Croatia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;36;;
+Croatia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;23;;
+Croatia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;35;;
+Croatia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;166;;
+Croatia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;91;;
+Croatia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;5;;
+Croatia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;203;;
+Croatia;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;299;;
+Croatia;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;119;;
+Croatia;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;4;;
+Croatia;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;87;;
+Croatia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;170;;
+Croatia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;109;;
+Croatia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;1;;
+Croatia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;44;;
+Croatia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;39;;
+Croatia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;10;;
+Croatia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;33;;
+Croatia;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;59;;
+Croatia;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;15;;
+Croatia;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3;;
+Croatia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;2;;
+Croatia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Croatia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;964;;
+Croatia;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;1491;;
+Croatia;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;632;;
+Croatia;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;88;;
+Croatia;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Croatia;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;202579;;
+Croatia;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;102309;;
+Croatia;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;196436;;
+Croatia;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;272563;;
+Croatia;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;15412;;
+Croatia;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;334725;;
+Croatia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;1;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;2757;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;9261;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;595;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;7;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;2;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;65;;
+Croatia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;646;;
+Croatia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;442;;
+Croatia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;12;;
+Croatia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;12;;
+Croatia;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;81;;
+Croatia;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;92;;
+Croatia;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;7;;
+Croatia;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;507;;
+Croatia;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;4591;;
+Croatia;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;3520;;
+Croatia;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;117;;
+Croatia;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;1;;
+Croatia;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;4;;
+Croatia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;116;;
+Croatia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;106;;
+Croatia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;;
+Croatia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;18;;
+Croatia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;278;;
+Croatia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;236;;
+Croatia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;2;;
+Croatia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;410;;
+Croatia;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;3797;;
+Croatia;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;2516;;
+Croatia;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;80;;
+Croatia;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;649;;
+Croatia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;6661;;
+Croatia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3982;;
+Croatia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;101;;
+Croatia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;98;;
+Croatia;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;1110;;
+Croatia;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;908;;
+Croatia;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;28;;
+Croatia;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;400;;
+Croatia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;2240;;
+Croatia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;1427;;
+Croatia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;44;;
+Croatia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;146;;
+Croatia;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;1373;;
+Croatia;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;510;;
+Croatia;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;11;;
+Croatia;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;51;;
+Croatia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;1015;;
+Croatia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;427;;
+Croatia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;6;;
+Croatia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;30;;
+Croatia;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;305;;
+Croatia;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;203;;
+Croatia;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;7;;
+Croatia;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;166;;
+Croatia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;1887;;
+Croatia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;1402;;
+Croatia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;107;;
+Croatia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;95;;
+Croatia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;807;;
+Croatia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;440;;
+Croatia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;19;;
+Croatia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;53;;
+Croatia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;769;;
+Croatia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;718;;
+Croatia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;73;;
+Croatia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Education ;Y15-29;2011;20;;
+Croatia;M;POP;TOTAL;Managers;Education ;Y30-49;2011;435;;
+Croatia;M;POP;TOTAL;Managers;Education ;Y50-64;2011;635;;
+Croatia;M;POP;TOTAL;Managers;Education ;Y65-84;2011;39;;
+Croatia;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;34;;
+Croatia;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;237;;
+Croatia;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;282;;
+Croatia;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;26;;
+Croatia;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;40;;
+Croatia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;500;;
+Croatia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;358;;
+Croatia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;19;;
+Croatia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;60;;
+Croatia;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;482;;
+Croatia;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;386;;
+Croatia;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;25;;
+Croatia;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;1;;
+Croatia;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Croatia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;2;;
+Croatia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Croatia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;4;;
+Croatia;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;28;;
+Croatia;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;16;;
+Croatia;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;2;;
+Croatia;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;208;;
+Croatia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;990;;
+Croatia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;459;;
+Croatia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;6;;
+Croatia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;82;;
+Croatia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;328;;
+Croatia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;251;;
+Croatia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;1540;;
+Croatia;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;4399;;
+Croatia;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;2708;;
+Croatia;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;40;;
+Croatia;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;223;;
+Croatia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;683;;
+Croatia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;648;;
+Croatia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;6;;
+Croatia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;70;;
+Croatia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;308;;
+Croatia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;259;;
+Croatia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;7;;
+Croatia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;641;;
+Croatia;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;1934;;
+Croatia;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;1063;;
+Croatia;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;51;;
+Croatia;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;767;;
+Croatia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2152;;
+Croatia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;828;;
+Croatia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;23;;
+Croatia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;199;;
+Croatia;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;1083;;
+Croatia;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;708;;
+Croatia;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;6;;
+Croatia;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;144;;
+Croatia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;286;;
+Croatia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;213;;
+Croatia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;4;;
+Croatia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;2098;;
+Croatia;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;6283;;
+Croatia;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;1508;;
+Croatia;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;55;;
+Croatia;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;1;;
+Croatia;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;812;;
+Croatia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;2334;;
+Croatia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;543;;
+Croatia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;13;;
+Croatia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;36;;
+Croatia;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;125;;
+Croatia;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;77;;
+Croatia;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;2;;
+Croatia;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;2254;;
+Croatia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;7605;;
+Croatia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;3874;;
+Croatia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;478;;
+Croatia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;2;;
+Croatia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;157;;
+Croatia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;332;;
+Croatia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;154;;
+Croatia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;5;;
+Croatia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;674;;
+Croatia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;5500;;
+Croatia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;3616;;
+Croatia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;163;;
+Croatia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Croatia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;2647;;
+Croatia;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;8116;;
+Croatia;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;6241;;
+Croatia;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;511;;
+Croatia;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;1122;;
+Croatia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;4126;;
+Croatia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;3119;;
+Croatia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;290;;
+Croatia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;389;;
+Croatia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;1890;;
+Croatia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;1094;;
+Croatia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;81;;
+Croatia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;261;;
+Croatia;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;1130;;
+Croatia;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;831;;
+Croatia;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;352;;
+Croatia;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;10;;
+Croatia;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;12;;
+Croatia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;58;;
+Croatia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;16;;
+Croatia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;26;;
+Croatia;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;53;;
+Croatia;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;38;;
+Croatia;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;10;;
+Croatia;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;656;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;2005;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;929;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;6;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;146;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;888;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;760;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;4245;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;13989;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;9876;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;55;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;182;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1827;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1977;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;5;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;233;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1102;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1112;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;3;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;2415;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;6938;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;4551;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;47;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3874;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;12132;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3334;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;45;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;2403;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;9195;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;5121;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;38;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;396;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;973;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;593;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;5;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;2850;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;7061;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;1733;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;13;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;1373;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;3358;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;1276;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;19;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;146;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;635;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;324;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;7;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;2195;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;4617;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;2301;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;88;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;477;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;1144;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;406;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;5;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1071;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;6593;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;2653;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;54;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;252;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;646;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;383;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;8;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;2090;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;2486;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;1029;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;11;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;1465;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;2196;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;753;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;31;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;354;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;831;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;359;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;18;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;5;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;35;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;10;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;77;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;139;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;75;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;2;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;111;;
+Croatia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;282;;
+Croatia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;249;;
+Croatia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;24;;
+Croatia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;98;;
+Croatia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;117;;
+Croatia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;1723;;
+Croatia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;3432;;
+Croatia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;2166;;
+Croatia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;4;;
+Croatia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;62;;
+Croatia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;329;;
+Croatia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;407;;
+Croatia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;124;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;436;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;363;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;371;;
+Croatia;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;801;;
+Croatia;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;589;;
+Croatia;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;6;;
+Croatia;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;4001;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;5367;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1613;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;2056;;
+Croatia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;6224;;
+Croatia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;3258;;
+Croatia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;4;;
+Croatia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;783;;
+Croatia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;1112;;
+Croatia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;690;;
+Croatia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;6;;
+Croatia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;692;;
+Croatia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;714;;
+Croatia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;259;;
+Croatia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;2;;
+Croatia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;794;;
+Croatia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;1556;;
+Croatia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;930;;
+Croatia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;3;;
+Croatia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;1;;
+Croatia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;36;;
+Croatia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;109;;
+Croatia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;76;;
+Croatia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;655;;
+Croatia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;985;;
+Croatia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;489;;
+Croatia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;9;;
+Croatia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;481;;
+Croatia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;759;;
+Croatia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;289;;
+Croatia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;8;;
+Croatia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;2619;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;2989;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;1729;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;19;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;111;;
+Croatia;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;209;;
+Croatia;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;191;;
+Croatia;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;131;;
+Croatia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;353;;
+Croatia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;355;;
+Croatia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;3;;
+Croatia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;678;;
+Croatia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;966;;
+Croatia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;332;;
+Croatia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;10;;
+Croatia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;119;;
+Croatia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;244;;
+Croatia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;128;;
+Croatia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;11;;
+Croatia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Croatia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;50;;
+Croatia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;10;;
+Croatia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;62;;
+Croatia;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;55;;
+Croatia;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;26;;
+Croatia;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;105;;
+Croatia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;386;;
+Croatia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;335;;
+Croatia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;5;;
+Croatia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;23;;
+Croatia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;116;;
+Croatia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;102;;
+Croatia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;648;;
+Croatia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;2028;;
+Croatia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;1320;;
+Croatia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;9;;
+Croatia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;22;;
+Croatia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;97;;
+Croatia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;137;;
+Croatia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;96;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;487;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;364;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;2;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;185;;
+Croatia;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;712;;
+Croatia;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;537;;
+Croatia;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;7;;
+Croatia;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;10887;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;21220;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;7055;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;77;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;660;;
+Croatia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;1934;;
+Croatia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;1222;;
+Croatia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;3;;
+Croatia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;17364;;
+Croatia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;18636;;
+Croatia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;6024;;
+Croatia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;143;;
+Croatia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;3;;
+Croatia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;343;;
+Croatia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;391;;
+Croatia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;115;;
+Croatia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;4;;
+Croatia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;149;;
+Croatia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;326;;
+Croatia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;178;;
+Croatia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;55;;
+Croatia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;206;;
+Croatia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;175;;
+Croatia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;30;;
+Croatia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;1;;
+Croatia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;126;;
+Croatia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;309;;
+Croatia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;201;;
+Croatia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;5;;
+Croatia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;3563;;
+Croatia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;7193;;
+Croatia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;3273;;
+Croatia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;34;;
+Croatia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;4078;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;13201;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;1932;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;17;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;452;;
+Croatia;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;1920;;
+Croatia;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;1619;;
+Croatia;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;12;;
+Croatia;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;343;;
+Croatia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;1074;;
+Croatia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;714;;
+Croatia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;8;;
+Croatia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;336;;
+Croatia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;683;;
+Croatia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;427;;
+Croatia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;8;;
+Croatia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;520;;
+Croatia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;908;;
+Croatia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;441;;
+Croatia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;20;;
+Croatia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;9;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;10;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;43;;
+Croatia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Croatia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;29;;
+Croatia;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;39;;
+Croatia;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;32;;
+Croatia;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;4004;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;15454;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;13430;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;3570;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;40;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;1;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;56;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;164;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;93;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;6;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;5;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;10;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;6;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;5;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;22;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;3;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;12;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;30;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;16;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;2;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;7;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;42;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;114;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;111;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;4;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;9;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;9;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;168;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;460;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;210;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;7;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;22;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;6;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;12;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;7;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;3;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;12;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;9;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;5;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;11;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;14;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;4;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;3;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;3;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;4;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;1;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;4;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;2;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;237;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;688;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;595;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;6;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;183;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;581;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;428;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;19585;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;42484;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;21225;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;141;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;478;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2676;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1998;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;681;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2141;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1214;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;18072;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;35443;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;16239;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;97;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;6044;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;9087;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3818;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;31;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;680;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;2615;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;2082;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;8;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;408;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;795;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;457;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;5;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;469;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;1123;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;499;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;5;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;17;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;54;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;45;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;18;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;40;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;43;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;339;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;786;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;345;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;9;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;374;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;679;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;291;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;4;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;183;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;811;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;481;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;5;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;33;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;71;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;102;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;67;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;282;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;356;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;2;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;140;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;446;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;214;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;786;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;1516;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;761;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;32;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;4;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;89;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;227;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;162;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;842;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;2439;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;1362;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;13;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;407;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;1333;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;809;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;9801;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;19607;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;8870;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;22;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;57;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;362;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;390;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;600;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2154;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1175;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;5;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;3353;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;8384;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;3490;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;14;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2984;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;6154;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1895;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;13;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;5367;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;20619;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;11506;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;142;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;239;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;341;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;238;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;61;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;213;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;120;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;13;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;74;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;54;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;6;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;25;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;25;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;98;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;283;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;145;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;4;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;257;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;461;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;227;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;2;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;231;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;1063;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;457;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;5;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;13;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;124;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;137;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;194;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;1027;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;774;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;162;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;344;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;133;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;109;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;354;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;180;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;37;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;9;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;67;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;111;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;82;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;2191;;
+Croatia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;4141;;
+Croatia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;2030;;
+Croatia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;82;;
+Croatia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Croatia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;54;;
+Croatia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;171;;
+Croatia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;113;;
+Croatia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;4896;;
+Croatia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;7639;;
+Croatia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;3571;;
+Croatia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;12;;
+Croatia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;48;;
+Croatia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;205;;
+Croatia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;234;;
+Croatia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1238;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;3289;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1716;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;8;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;6424;;
+Croatia;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;11584;;
+Croatia;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;4379;;
+Croatia;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;9;;
+Croatia;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;1;;
+Croatia;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2000;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2034;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;700;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;809;;
+Croatia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;1274;;
+Croatia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;726;;
+Croatia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;768;;
+Croatia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;736;;
+Croatia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;410;;
+Croatia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;3;;
+Croatia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;111;;
+Croatia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;154;;
+Croatia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;64;;
+Croatia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;19;;
+Croatia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;30;;
+Croatia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;24;;
+Croatia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;25;;
+Croatia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;83;;
+Croatia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;56;;
+Croatia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;190;;
+Croatia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;340;;
+Croatia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;131;;
+Croatia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;2;;
+Croatia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;856;;
+Croatia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;1729;;
+Croatia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;851;;
+Croatia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;3;;
+Croatia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;293;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;793;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;484;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;8;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;39;;
+Croatia;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;136;;
+Croatia;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;153;;
+Croatia;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;121;;
+Croatia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;402;;
+Croatia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;256;;
+Croatia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;166;;
+Croatia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;287;;
+Croatia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;161;;
+Croatia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;108;;
+Croatia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;276;;
+Croatia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;142;;
+Croatia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;13;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;43;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;23;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;3;;
+Croatia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;65;;
+Croatia;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;108;;
+Croatia;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;51;;
+Croatia;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;18;;
+Croatia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;58;;
+Croatia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;40;;
+Croatia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;4;;
+Croatia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;11;;
+Croatia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;17;;
+Croatia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;13;;
+Croatia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;165;;
+Croatia;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;323;;
+Croatia;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;198;;
+Croatia;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;4;;
+Croatia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;19;;
+Croatia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;23;;
+Croatia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;11;;
+Croatia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;50;;
+Croatia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;49;;
+Croatia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;80;;
+Croatia;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;209;;
+Croatia;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;96;;
+Croatia;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;80;;
+Croatia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;143;;
+Croatia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;61;;
+Croatia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;32;;
+Croatia;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;94;;
+Croatia;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;43;;
+Croatia;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;31;;
+Croatia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;58;;
+Croatia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;36;;
+Croatia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;45;;
+Croatia;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;119;;
+Croatia;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;19;;
+Croatia;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;1;;
+Croatia;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;19;;
+Croatia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;24;;
+Croatia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;10;;
+Croatia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;1;;
+Croatia;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;12;;
+Croatia;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;3;;
+Croatia;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;48;;
+Croatia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;109;;
+Croatia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;47;;
+Croatia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;3;;
+Croatia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;29;;
+Croatia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;50;;
+Croatia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;28;;
+Croatia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;70;;
+Croatia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;229;;
+Croatia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;109;;
+Croatia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;13;;
+Croatia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;104;;
+Croatia;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;129;;
+Croatia;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;74;;
+Croatia;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;33;;
+Croatia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;59;;
+Croatia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;51;;
+Croatia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;6;;
+Croatia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;15;;
+Croatia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;27;;
+Croatia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;11;;
+Croatia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;14;;
+Croatia;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;27;;
+Croatia;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;18;;
+Croatia;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;;
+Croatia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Croatia;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;1387;;
+Croatia;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;1987;;
+Croatia;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;1093;;
+Croatia;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;69;;
+Croatia;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;1;;
+Croatia;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;535753;;
+Hungary;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;300781;;
+Hungary;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;566322;;
+Hungary;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;912298;;
+Hungary;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;121218;;
+Hungary;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;704414;;
+Hungary;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;531;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;2778;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;388;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;81;;
+Hungary;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;610;;
+Hungary;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;544;;
+Hungary;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;40;;
+Hungary;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;5;;
+Hungary;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;22;;
+Hungary;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;20;;
+Hungary;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;609;;
+Hungary;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;5179;;
+Hungary;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;2941;;
+Hungary;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;145;;
+Hungary;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;20;;
+Hungary;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;294;;
+Hungary;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;177;;
+Hungary;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Hungary;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;37;;
+Hungary;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;437;;
+Hungary;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;254;;
+Hungary;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;7;;
+Hungary;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;102;;
+Hungary;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;870;;
+Hungary;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;529;;
+Hungary;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;25;;
+Hungary;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1890;;
+Hungary;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;11059;;
+Hungary;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;4684;;
+Hungary;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;287;;
+Hungary;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;4;;
+Hungary;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;152;;
+Hungary;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;1713;;
+Hungary;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;818;;
+Hungary;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;14;;
+Hungary;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;589;;
+Hungary;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;2408;;
+Hungary;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;1182;;
+Hungary;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;67;;
+Hungary;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;210;;
+Hungary;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;1341;;
+Hungary;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;419;;
+Hungary;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;35;;
+Hungary;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;328;;
+Hungary;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;3002;;
+Hungary;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;1262;;
+Hungary;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;34;;
+Hungary;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;46;;
+Hungary;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;452;;
+Hungary;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;279;;
+Hungary;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;35;;
+Hungary;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;230;;
+Hungary;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;1735;;
+Hungary;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;999;;
+Hungary;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;116;;
+Hungary;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;183;;
+Hungary;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;1184;;
+Hungary;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;567;;
+Hungary;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;36;;
+Hungary;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;333;;
+Hungary;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;4973;;
+Hungary;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;3377;;
+Hungary;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;96;;
+Hungary;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Education ;Y15-29;2011;128;;
+Hungary;F;POP;TOTAL;Managers;Education ;Y30-49;2011;3764;;
+Hungary;F;POP;TOTAL;Managers;Education ;Y50-64;2011;4204;;
+Hungary;F;POP;TOTAL;Managers;Education ;Y65-84;2011;97;;
+Hungary;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;228;;
+Hungary;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;4451;;
+Hungary;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;2949;;
+Hungary;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;142;;
+Hungary;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;90;;
+Hungary;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;678;;
+Hungary;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;514;;
+Hungary;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;29;;
+Hungary;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;2;;
+Hungary;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;146;;
+Hungary;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;912;;
+Hungary;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;567;;
+Hungary;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;71;;
+Hungary;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Hungary;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2;;
+Hungary;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;6;;
+Hungary;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;30;;
+Hungary;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;7;;
+Hungary;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;331;;
+Hungary;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;750;;
+Hungary;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;310;;
+Hungary;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;32;;
+Hungary;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;36;;
+Hungary;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;62;;
+Hungary;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;26;;
+Hungary;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;2;;
+Hungary;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;4458;;
+Hungary;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;10415;;
+Hungary;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;2814;;
+Hungary;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;182;;
+Hungary;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;357;;
+Hungary;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;962;;
+Hungary;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;317;;
+Hungary;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Hungary;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;236;;
+Hungary;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;591;;
+Hungary;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;207;;
+Hungary;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;11;;
+Hungary;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;603;;
+Hungary;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;1535;;
+Hungary;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;578;;
+Hungary;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;32;;
+Hungary;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3609;;
+Hungary;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;8673;;
+Hungary;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2603;;
+Hungary;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;500;;
+Hungary;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;619;;
+Hungary;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;2354;;
+Hungary;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;774;;
+Hungary;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;21;;
+Hungary;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;644;;
+Hungary;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;1318;;
+Hungary;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;621;;
+Hungary;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;23;;
+Hungary;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;3821;;
+Hungary;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;8678;;
+Hungary;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;2152;;
+Hungary;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;192;;
+Hungary;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;4;;
+Hungary;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;3395;;
+Hungary;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;8184;;
+Hungary;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;2248;;
+Hungary;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;129;;
+Hungary;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;289;;
+Hungary;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;798;;
+Hungary;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;272;;
+Hungary;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;34;;
+Hungary;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;7784;;
+Hungary;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;17608;;
+Hungary;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;7435;;
+Hungary;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;1244;;
+Hungary;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;7;;
+Hungary;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;1290;;
+Hungary;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;2159;;
+Hungary;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;533;;
+Hungary;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;45;;
+Hungary;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;5617;;
+Hungary;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;19577;;
+Hungary;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;8062;;
+Hungary;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;358;;
+Hungary;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;15522;;
+Hungary;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;89793;;
+Hungary;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;49744;;
+Hungary;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;1858;;
+Hungary;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;14;;
+Hungary;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;5736;;
+Hungary;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;19918;;
+Hungary;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;10961;;
+Hungary;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;1971;;
+Hungary;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;4;;
+Hungary;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;1774;;
+Hungary;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;5389;;
+Hungary;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;2649;;
+Hungary;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;281;;
+Hungary;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;5;;
+Hungary;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;1025;;
+Hungary;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;3036;;
+Hungary;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;1075;;
+Hungary;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;121;;
+Hungary;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;34;;
+Hungary;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;33;;
+Hungary;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;10;;
+Hungary;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;140;;
+Hungary;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;277;;
+Hungary;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;57;;
+Hungary;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;6;;
+Hungary;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;499;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;1655;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;1358;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;49;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;25;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;107;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;72;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;2;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;8525;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;22300;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;8939;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;255;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;575;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1763;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1030;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;9;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;415;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1615;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1030;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;25;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;1168;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;4037;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;1849;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;67;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;8167;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;25676;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;9988;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;525;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;2;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;2202;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;6815;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;2877;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;43;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;1232;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;2114;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;855;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;40;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;2938;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;5896;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;1714;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;101;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;8062;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;22168;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;8255;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;320;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;2;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;996;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;4147;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;2076;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;191;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;5103;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;14412;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;7414;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;856;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;8;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;2644;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;4639;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;1536;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;84;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;9650;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;39244;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;20415;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;323;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;5;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;1419;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;5975;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;3791;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;161;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;10784;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;71341;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;30698;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;1003;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;2091;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;4340;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;1894;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;154;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;1623;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;5013;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;2148;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;177;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;12;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;26;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;74;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;47;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;4;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;91;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;195;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;63;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;3;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;565;;
+Hungary;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;2288;;
+Hungary;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;2122;;
+Hungary;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;92;;
+Hungary;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;33;;
+Hungary;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;124;;
+Hungary;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;112;;
+Hungary;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;4;;
+Hungary;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;4961;;
+Hungary;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;14252;;
+Hungary;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;7422;;
+Hungary;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;216;;
+Hungary;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;539;;
+Hungary;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1348;;
+Hungary;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;872;;
+Hungary;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;16;;
+Hungary;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;514;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1782;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1105;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;17;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;1206;;
+Hungary;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;4634;;
+Hungary;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;2220;;
+Hungary;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;66;;
+Hungary;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;2;;
+Hungary;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;5261;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;14116;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5253;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;188;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;4614;;
+Hungary;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;20847;;
+Hungary;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;9134;;
+Hungary;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;124;;
+Hungary;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;3282;;
+Hungary;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;3074;;
+Hungary;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;1132;;
+Hungary;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;55;;
+Hungary;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;3125;;
+Hungary;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;4973;;
+Hungary;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;1526;;
+Hungary;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;70;;
+Hungary;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;2434;;
+Hungary;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;5268;;
+Hungary;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;2246;;
+Hungary;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;58;;
+Hungary;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;701;;
+Hungary;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;1802;;
+Hungary;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;976;;
+Hungary;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;99;;
+Hungary;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;2;;
+Hungary;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;4171;;
+Hungary;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;11381;;
+Hungary;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;5704;;
+Hungary;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;530;;
+Hungary;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;4243;;
+Hungary;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;6968;;
+Hungary;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;2647;;
+Hungary;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;126;;
+Hungary;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;5714;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;15291;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;8692;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;405;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;1666;;
+Hungary;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;6768;;
+Hungary;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;4320;;
+Hungary;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;156;;
+Hungary;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;2;;
+Hungary;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;1490;;
+Hungary;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;5115;;
+Hungary;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;3275;;
+Hungary;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;131;;
+Hungary;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;1464;;
+Hungary;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;2145;;
+Hungary;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;1061;;
+Hungary;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;72;;
+Hungary;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;1206;;
+Hungary;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;2436;;
+Hungary;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;1230;;
+Hungary;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;85;;
+Hungary;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;18;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;21;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;7;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;68;;
+Hungary;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;157;;
+Hungary;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;40;;
+Hungary;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;5;;
+Hungary;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;235;;
+Hungary;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;806;;
+Hungary;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;624;;
+Hungary;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;39;;
+Hungary;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;3;;
+Hungary;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;30;;
+Hungary;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;26;;
+Hungary;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;2;;
+Hungary;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;2622;;
+Hungary;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;6566;;
+Hungary;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;2700;;
+Hungary;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;133;;
+Hungary;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;4;;
+Hungary;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;22;;
+Hungary;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;88;;
+Hungary;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;77;;
+Hungary;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;75;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;238;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;167;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;11;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;213;;
+Hungary;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;746;;
+Hungary;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;291;;
+Hungary;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;14;;
+Hungary;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;43501;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;122165;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;44075;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2234;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;18;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;1097;;
+Hungary;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;3571;;
+Hungary;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;1499;;
+Hungary;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;32;;
+Hungary;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;25953;;
+Hungary;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;32515;;
+Hungary;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;11047;;
+Hungary;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;556;;
+Hungary;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;898;;
+Hungary;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;1118;;
+Hungary;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;356;;
+Hungary;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;34;;
+Hungary;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;467;;
+Hungary;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;747;;
+Hungary;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;309;;
+Hungary;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;30;;
+Hungary;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;353;;
+Hungary;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;1400;;
+Hungary;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;1304;;
+Hungary;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;280;;
+Hungary;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;7;;
+Hungary;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;788;;
+Hungary;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;1402;;
+Hungary;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;528;;
+Hungary;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;63;;
+Hungary;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;1672;;
+Hungary;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;4228;;
+Hungary;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;2254;;
+Hungary;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;163;;
+Hungary;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;2971;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;8179;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;3141;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;108;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;2868;;
+Hungary;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;15643;;
+Hungary;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;10371;;
+Hungary;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;221;;
+Hungary;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;2;;
+Hungary;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;2280;;
+Hungary;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;12025;;
+Hungary;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;7376;;
+Hungary;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;146;;
+Hungary;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;1191;;
+Hungary;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;2235;;
+Hungary;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;1567;;
+Hungary;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;297;;
+Hungary;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;4;;
+Hungary;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;9791;;
+Hungary;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;21345;;
+Hungary;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;6916;;
+Hungary;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;809;;
+Hungary;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;6;;
+Hungary;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;561;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1062;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;754;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;55;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;154;;
+Hungary;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;130;;
+Hungary;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;38;;
+Hungary;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Hungary;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;2212;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;13783;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;10855;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;833;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;17;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;1;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;87;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;493;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;385;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;19;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;8;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;12;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;43;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;197;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;79;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;19;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;48;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;38;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;1;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;79;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;333;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;188;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;14;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;12;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;24;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;17;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;20;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;52;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;28;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;2;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;8;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;52;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;43;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;4;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;3;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;39;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;41;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;5;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;12;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;48;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;23;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;5;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;33;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;147;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;97;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;10;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;131;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;472;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;249;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;4;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;662;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;2337;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;929;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;7;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;37;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;121;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;94;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;2;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;40;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;138;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;80;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;3;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;54;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;137;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;51;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;4;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;35;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;63;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;26;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;4;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;5;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;32;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;15;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;2;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;108;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;498;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;265;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;10;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;1;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;11;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;11;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;1;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;9146;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;39995;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;18188;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;393;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;11;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;11;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;83;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;76;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;17;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;97;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;86;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;359;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;1386;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;738;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;34;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1413;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4998;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1944;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;116;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;81;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;420;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;231;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;6;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;887;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;1466;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;469;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;24;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;135;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;491;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;232;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;16;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;18;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;91;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;56;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;8;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;30;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;121;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;65;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;3;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;129;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;509;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;243;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;22;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;199;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;667;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;347;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;20;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;67;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;354;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;198;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;6;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;22;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;235;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;191;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;7;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;113;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;620;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;502;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;9;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;56;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;282;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;197;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;12;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;133;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;639;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;405;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;57;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;8;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;18;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;13;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;16;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;117;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;506;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;279;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;10;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;2;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;23;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;24;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;1;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;27172;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;82538;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;38566;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;293;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;8;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;9;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;100;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;91;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;42;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;182;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;177;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;5;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;70;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;260;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;128;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;2;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;779;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2326;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1128;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;29;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;323;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;1737;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;689;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;15;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;56;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;183;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;107;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;3;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;88;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;183;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;111;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;4;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;30;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;79;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;36;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;1;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;48;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;155;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;100;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;11;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;99;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;267;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;175;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;5;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;833;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;1846;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;1487;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;10;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;117;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;398;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;134;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;2;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;18;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;96;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;124;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;3;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;133;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;1039;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;962;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;17;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;28;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;71;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;54;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;5;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;223;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;1011;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;817;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;23;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;4;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;12;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;2;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;23;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;37;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;1438;;
+Hungary;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;5193;;
+Hungary;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;3253;;
+Hungary;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;182;;
+Hungary;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;7;;
+Hungary;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;38;;
+Hungary;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;50;;
+Hungary;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;1;;
+Hungary;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;3239;;
+Hungary;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;12365;;
+Hungary;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;8863;;
+Hungary;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;289;;
+Hungary;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;8;;
+Hungary;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;46;;
+Hungary;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;326;;
+Hungary;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;309;;
+Hungary;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;12;;
+Hungary;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;380;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1903;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1227;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;15;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;274;;
+Hungary;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;1209;;
+Hungary;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;846;;
+Hungary;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;38;;
+Hungary;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3530;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;9205;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5431;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;321;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;2;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;553;;
+Hungary;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;2266;;
+Hungary;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;1614;;
+Hungary;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;56;;
+Hungary;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;5782;;
+Hungary;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;15644;;
+Hungary;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;9959;;
+Hungary;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;269;;
+Hungary;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;519;;
+Hungary;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;1175;;
+Hungary;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;756;;
+Hungary;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;65;;
+Hungary;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;5;;
+Hungary;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;347;;
+Hungary;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;1034;;
+Hungary;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;889;;
+Hungary;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;107;;
+Hungary;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;341;;
+Hungary;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;1350;;
+Hungary;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;989;;
+Hungary;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;105;;
+Hungary;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;874;;
+Hungary;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;1956;;
+Hungary;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;1354;;
+Hungary;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;111;;
+Hungary;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;7;;
+Hungary;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;3099;;
+Hungary;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;12745;;
+Hungary;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;10435;;
+Hungary;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;560;;
+Hungary;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;3;;
+Hungary;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;8543;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;30703;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;14820;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;219;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;1425;;
+Hungary;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;12516;;
+Hungary;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;12815;;
+Hungary;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;352;;
+Hungary;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;4;;
+Hungary;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;1262;;
+Hungary;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;9819;;
+Hungary;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;9411;;
+Hungary;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;286;;
+Hungary;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;451;;
+Hungary;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;1748;;
+Hungary;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;1541;;
+Hungary;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;138;;
+Hungary;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;375;;
+Hungary;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;1401;;
+Hungary;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;1166;;
+Hungary;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;82;;
+Hungary;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;227;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;713;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;343;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;18;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;1;;
+Hungary;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;108;;
+Hungary;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;189;;
+Hungary;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;60;;
+Hungary;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;;
+Hungary;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Hungary;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;476030;;
+Hungary;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;129660;;
+Hungary;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;408532;;
+Hungary;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;537280;;
+Hungary;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;42893;;
+Hungary;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;743245;;
+Hungary;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;4256;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;11181;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;814;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;47;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;393;;
+Hungary;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;2584;;
+Hungary;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;2550;;
+Hungary;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;255;;
+Hungary;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;9;;
+Hungary;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;133;;
+Hungary;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;123;;
+Hungary;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;10;;
+Hungary;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;1787;;
+Hungary;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;17065;;
+Hungary;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;8523;;
+Hungary;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;742;;
+Hungary;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;5;;
+Hungary;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;41;;
+Hungary;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;955;;
+Hungary;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;648;;
+Hungary;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;21;;
+Hungary;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;174;;
+Hungary;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1338;;
+Hungary;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1032;;
+Hungary;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;52;;
+Hungary;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;813;;
+Hungary;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;7190;;
+Hungary;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;4220;;
+Hungary;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;294;;
+Hungary;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1909;;
+Hungary;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;16213;;
+Hungary;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5934;;
+Hungary;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;483;;
+Hungary;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;10;;
+Hungary;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;378;;
+Hungary;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;4355;;
+Hungary;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;2258;;
+Hungary;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;78;;
+Hungary;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;634;;
+Hungary;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;3839;;
+Hungary;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;1678;;
+Hungary;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;162;;
+Hungary;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;2;;
+Hungary;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;373;;
+Hungary;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;4281;;
+Hungary;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;1115;;
+Hungary;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;86;;
+Hungary;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;248;;
+Hungary;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;3385;;
+Hungary;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;840;;
+Hungary;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;53;;
+Hungary;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;63;;
+Hungary;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;957;;
+Hungary;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;620;;
+Hungary;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;99;;
+Hungary;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;266;;
+Hungary;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;3233;;
+Hungary;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;1663;;
+Hungary;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;344;;
+Hungary;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;2;;
+Hungary;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;337;;
+Hungary;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;2930;;
+Hungary;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;1196;;
+Hungary;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;114;;
+Hungary;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;379;;
+Hungary;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;6274;;
+Hungary;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;3647;;
+Hungary;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;307;;
+Hungary;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;9;;
+Hungary;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Education ;Y15-29;2011;70;;
+Hungary;M;POP;TOTAL;Managers;Education ;Y30-49;2011;1794;;
+Hungary;M;POP;TOTAL;Managers;Education ;Y50-64;2011;1752;;
+Hungary;M;POP;TOTAL;Managers;Education ;Y65-84;2011;185;;
+Hungary;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;84;;
+Hungary;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;1227;;
+Hungary;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;1329;;
+Hungary;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;203;;
+Hungary;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;81;;
+Hungary;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;1043;;
+Hungary;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;653;;
+Hungary;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;76;;
+Hungary;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;93;;
+Hungary;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;1079;;
+Hungary;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;756;;
+Hungary;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;159;;
+Hungary;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;14;;
+Hungary;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;7;;
+Hungary;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;11;;
+Hungary;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;81;;
+Hungary;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;24;;
+Hungary;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;3;;
+Hungary;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;578;;
+Hungary;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;1696;;
+Hungary;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;1093;;
+Hungary;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;191;;
+Hungary;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;60;;
+Hungary;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;186;;
+Hungary;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;90;;
+Hungary;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;14;;
+Hungary;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;8065;;
+Hungary;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;20177;;
+Hungary;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;5826;;
+Hungary;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;688;;
+Hungary;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;9;;
+Hungary;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;574;;
+Hungary;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2182;;
+Hungary;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;757;;
+Hungary;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;56;;
+Hungary;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;293;;
+Hungary;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;794;;
+Hungary;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;383;;
+Hungary;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;41;;
+Hungary;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;1282;;
+Hungary;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;4324;;
+Hungary;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;2078;;
+Hungary;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;269;;
+Hungary;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;2;;
+Hungary;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3252;;
+Hungary;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;9839;;
+Hungary;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2412;;
+Hungary;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;475;;
+Hungary;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;9;;
+Hungary;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;747;;
+Hungary;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;2803;;
+Hungary;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;1195;;
+Hungary;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;81;;
+Hungary;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;346;;
+Hungary;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;955;;
+Hungary;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;479;;
+Hungary;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;47;;
+Hungary;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;9722;;
+Hungary;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;25273;;
+Hungary;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;4839;;
+Hungary;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;460;;
+Hungary;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;8;;
+Hungary;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;3033;;
+Hungary;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;7621;;
+Hungary;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;1660;;
+Hungary;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;187;;
+Hungary;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;6;;
+Hungary;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;250;;
+Hungary;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;861;;
+Hungary;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;338;;
+Hungary;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;73;;
+Hungary;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;7009;;
+Hungary;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;23255;;
+Hungary;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;10449;;
+Hungary;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;3293;;
+Hungary;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;63;;
+Hungary;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;806;;
+Hungary;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;2242;;
+Hungary;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;788;;
+Hungary;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;103;;
+Hungary;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;3110;;
+Hungary;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;12759;;
+Hungary;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;5231;;
+Hungary;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;481;;
+Hungary;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;7;;
+Hungary;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;5712;;
+Hungary;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;25699;;
+Hungary;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;15216;;
+Hungary;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;2604;;
+Hungary;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;34;;
+Hungary;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;1777;;
+Hungary;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;8657;;
+Hungary;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;5971;;
+Hungary;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;2494;;
+Hungary;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;26;;
+Hungary;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;1495;;
+Hungary;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;5090;;
+Hungary;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;2220;;
+Hungary;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;476;;
+Hungary;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;17;;
+Hungary;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;786;;
+Hungary;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;3395;;
+Hungary;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;1537;;
+Hungary;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;474;;
+Hungary;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;17;;
+Hungary;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;19;;
+Hungary;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;36;;
+Hungary;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;7;;
+Hungary;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;2;;
+Hungary;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;120;;
+Hungary;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;293;;
+Hungary;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;89;;
+Hungary;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;5;;
+Hungary;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;726;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;2101;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;1416;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;96;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;78;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;297;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;183;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;15;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;12049;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;27819;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;9859;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;518;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;526;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2541;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1277;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;22;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;447;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1365;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;937;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;35;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;2575;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;8466;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;3990;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;312;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;2;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;7095;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;23383;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5445;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;346;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;8;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;2218;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;6577;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;2738;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;88;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;710;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;2111;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;532;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;21;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;4115;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;8806;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;1635;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;102;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;4182;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;8896;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;2955;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;254;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;809;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;3506;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;1674;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;245;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;2;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;3381;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;8325;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;3555;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;707;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;6;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;1839;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;4347;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;1464;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;125;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;5156;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;16232;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;5616;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;285;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;663;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;1597;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;870;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;111;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;2369;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;7224;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;2470;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;127;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;2774;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;5210;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;1838;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;245;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;894;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;2445;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;936;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;105;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;22;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;41;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;18;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;89;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;242;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;64;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;188;;
+Hungary;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;515;;
+Hungary;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;435;;
+Hungary;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;18;;
+Hungary;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;19;;
+Hungary;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;55;;
+Hungary;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;42;;
+Hungary;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;1;;
+Hungary;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;4193;;
+Hungary;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;9366;;
+Hungary;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;3062;;
+Hungary;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;75;;
+Hungary;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;237;;
+Hungary;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;593;;
+Hungary;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;298;;
+Hungary;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;5;;
+Hungary;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;190;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;576;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;421;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;9;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;450;;
+Hungary;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;1401;;
+Hungary;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;626;;
+Hungary;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;22;;
+Hungary;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3966;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;8226;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1974;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;69;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;8;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;3772;;
+Hungary;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;13883;;
+Hungary;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;5741;;
+Hungary;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;97;;
+Hungary;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;5;;
+Hungary;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;1373;;
+Hungary;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;1712;;
+Hungary;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;417;;
+Hungary;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;28;;
+Hungary;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;1505;;
+Hungary;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;2004;;
+Hungary;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;334;;
+Hungary;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;27;;
+Hungary;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;699;;
+Hungary;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;934;;
+Hungary;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;197;;
+Hungary;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;17;;
+Hungary;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;225;;
+Hungary;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;445;;
+Hungary;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;182;;
+Hungary;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;14;;
+Hungary;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;1111;;
+Hungary;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;2004;;
+Hungary;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;660;;
+Hungary;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;79;;
+Hungary;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;1693;;
+Hungary;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;2663;;
+Hungary;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;788;;
+Hungary;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;61;;
+Hungary;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1809;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;3041;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;1327;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;103;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;330;;
+Hungary;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;497;;
+Hungary;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;236;;
+Hungary;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;17;;
+Hungary;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;309;;
+Hungary;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;627;;
+Hungary;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;417;;
+Hungary;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;16;;
+Hungary;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;545;;
+Hungary;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;1014;;
+Hungary;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;281;;
+Hungary;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;34;;
+Hungary;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;279;;
+Hungary;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;536;;
+Hungary;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;214;;
+Hungary;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;22;;
+Hungary;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;9;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;22;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;44;;
+Hungary;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;81;;
+Hungary;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;24;;
+Hungary;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;;
+Hungary;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;355;;
+Hungary;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;1485;;
+Hungary;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;1731;;
+Hungary;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;110;;
+Hungary;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;14;;
+Hungary;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;55;;
+Hungary;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;73;;
+Hungary;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;9;;
+Hungary;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;1475;;
+Hungary;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;4228;;
+Hungary;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;2777;;
+Hungary;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;224;;
+Hungary;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;63;;
+Hungary;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;222;;
+Hungary;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;150;;
+Hungary;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;8;;
+Hungary;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;221;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;839;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;566;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;33;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;281;;
+Hungary;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;984;;
+Hungary;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;638;;
+Hungary;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;57;;
+Hungary;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;20712;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;57800;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;19804;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1713;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;32;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;1253;;
+Hungary;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;3843;;
+Hungary;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;1552;;
+Hungary;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;58;;
+Hungary;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;19618;;
+Hungary;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;28641;;
+Hungary;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;7326;;
+Hungary;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;492;;
+Hungary;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;7;;
+Hungary;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;656;;
+Hungary;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;970;;
+Hungary;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;290;;
+Hungary;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;32;;
+Hungary;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;371;;
+Hungary;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;734;;
+Hungary;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;387;;
+Hungary;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;34;;
+Hungary;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;308;;
+Hungary;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;1285;;
+Hungary;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;1173;;
+Hungary;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;258;;
+Hungary;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;519;;
+Hungary;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;1211;;
+Hungary;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;627;;
+Hungary;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;74;;
+Hungary;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;7884;;
+Hungary;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;24386;;
+Hungary;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;15194;;
+Hungary;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;860;;
+Hungary;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;13733;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;29119;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;4902;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;211;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;5;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;1009;;
+Hungary;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;3240;;
+Hungary;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;3503;;
+Hungary;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;358;;
+Hungary;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;1741;;
+Hungary;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;5451;;
+Hungary;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;2346;;
+Hungary;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;113;;
+Hungary;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;964;;
+Hungary;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;2227;;
+Hungary;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;1331;;
+Hungary;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;190;;
+Hungary;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;1362;;
+Hungary;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;3078;;
+Hungary;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;1473;;
+Hungary;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;255;;
+Hungary;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;6;;
+Hungary;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;114;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;422;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;292;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;53;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;91;;
+Hungary;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;205;;
+Hungary;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;26;;
+Hungary;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Hungary;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;9801;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;36075;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;22573;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;2176;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;42;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;1;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;8;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;1;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;421;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;1272;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;813;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;53;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;9;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;34;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;17;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;140;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;340;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;174;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;103;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;258;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;119;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;2;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;221;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;675;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;335;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;35;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;42;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;126;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;59;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;3;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;97;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;267;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;122;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;7;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;40;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;141;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;74;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;7;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;40;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;91;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;78;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;8;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;63;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;131;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;85;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;12;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;105;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;327;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;171;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;15;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;2;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;797;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;1893;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;666;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;33;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1391;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;3050;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;1502;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;22;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;103;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;338;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;290;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;31;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;119;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;366;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;284;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;10;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;369;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;807;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;371;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;26;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;77;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;195;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;100;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;9;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;33;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;92;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;46;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;7;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;11;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;23;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;14;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;1608;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;6628;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;5286;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;97;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;78;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;577;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;466;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;12;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;41193;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;116754;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;53895;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;1744;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;43;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;718;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;4812;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2426;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;19;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;811;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;4919;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3485;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;43;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;29912;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;104678;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;40508;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;1259;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;31;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;9720;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;34396;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;12004;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;526;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;9;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;1783;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;9634;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;5879;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;42;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;877;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;2972;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;1410;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;65;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;1192;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;4468;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;1469;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;65;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;180;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;795;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;377;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;43;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;468;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;2191;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;1322;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;66;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;1082;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;3787;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;1794;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;151;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;1432;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;5597;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;2688;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;110;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;2097;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;7827;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;5574;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;76;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;549;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;3127;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;3629;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;160;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;433;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;2552;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;2376;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;78;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;410;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;1809;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;1092;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;58;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;1210;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;4563;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;2739;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;335;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;255;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;838;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;235;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;368;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1438;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;375;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;6;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;3527;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;12477;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;7742;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;173;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;263;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;1592;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;963;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;10;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;40805;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;77019;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;29548;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;521;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;17;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;231;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2096;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1311;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;23;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1053;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;6566;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;4678;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;40;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;2057;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;9913;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;5242;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;80;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;4375;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;14905;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;4987;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;126;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;11026;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;70418;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;33880;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;851;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;10;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;276;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;919;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;433;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;26;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;234;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;624;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;291;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;16;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;90;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;384;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;197;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;5;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;2;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;146;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;616;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;442;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;24;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;374;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;1325;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;677;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;29;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;1226;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;2870;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;1550;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;39;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;974;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;4540;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;2968;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;55;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;2;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;81;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;588;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;759;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;29;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;544;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;3513;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;2419;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;68;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;92;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;531;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;384;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;21;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;302;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;1081;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;604;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;33;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;28;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;90;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;34;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;2;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;60;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;214;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;78;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;4370;;
+Hungary;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;9227;;
+Hungary;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;4511;;
+Hungary;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;162;;
+Hungary;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;50;;
+Hungary;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;120;;
+Hungary;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;78;;
+Hungary;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;2;;
+Hungary;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;8833;;
+Hungary;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;17171;;
+Hungary;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;6520;;
+Hungary;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;145;;
+Hungary;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;5;;
+Hungary;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;143;;
+Hungary;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;482;;
+Hungary;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;269;;
+Hungary;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;3;;
+Hungary;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;2559;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;6346;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2887;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;27;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;10450;;
+Hungary;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;21498;;
+Hungary;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;7047;;
+Hungary;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;98;;
+Hungary;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;8338;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;12915;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3872;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;146;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;3285;;
+Hungary;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;8204;;
+Hungary;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;3044;;
+Hungary;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;66;;
+Hungary;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;6;;
+Hungary;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;4266;;
+Hungary;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;4241;;
+Hungary;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;1002;;
+Hungary;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;48;;
+Hungary;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;4;;
+Hungary;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;781;;
+Hungary;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;1286;;
+Hungary;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;538;;
+Hungary;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;39;;
+Hungary;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;3;;
+Hungary;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;428;;
+Hungary;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;687;;
+Hungary;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;278;;
+Hungary;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;12;;
+Hungary;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;584;;
+Hungary;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;1148;;
+Hungary;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;553;;
+Hungary;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;45;;
+Hungary;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;1470;;
+Hungary;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;2422;;
+Hungary;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;931;;
+Hungary;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;72;;
+Hungary;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;3217;;
+Hungary;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;5754;;
+Hungary;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;2944;;
+Hungary;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;119;;
+Hungary;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;16020;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;32612;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;13208;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;85;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;18;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;503;;
+Hungary;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;943;;
+Hungary;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;715;;
+Hungary;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;64;;
+Hungary;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;1;;
+Hungary;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;627;;
+Hungary;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;1735;;
+Hungary;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;1047;;
+Hungary;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;42;;
+Hungary;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;569;;
+Hungary;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;993;;
+Hungary;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;523;;
+Hungary;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;56;;
+Hungary;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;466;;
+Hungary;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;917;;
+Hungary;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;444;;
+Hungary;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;13;;
+Hungary;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;204;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;423;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;158;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;2;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;194;;
+Hungary;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;320;;
+Hungary;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;68;;
+Hungary;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Hungary;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Hungary;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;226149;;
+Ireland;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;174279;;
+Ireland;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;158129;;
+Ireland;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;234682;;
+Ireland;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;39355;;
+Ireland;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;476789;;
+Ireland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;1;d;
+Ireland;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;1;d;
+Ireland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;1;d;
+Ireland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;1;d;
+Ireland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;210;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;263;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;12;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;2;d;
+Ireland;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;2;d;
+Ireland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;1;d;
+Ireland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;33;;
+Ireland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;207;;
+Ireland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;87;;
+Ireland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;13;;
+Ireland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;6;d;
+Ireland;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;42;;
+Ireland;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;9;d;
+Ireland;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;2;d;
+Ireland;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;356;;
+Ireland;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;2645;;
+Ireland;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;686;;
+Ireland;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;53;;
+Ireland;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;16;;
+Ireland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;150;;
+Ireland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;31;;
+Ireland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;18;;
+Ireland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;110;;
+Ireland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;30;;
+Ireland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;2;d;
+Ireland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;60;;
+Ireland;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;459;;
+Ireland;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;236;;
+Ireland;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;25;;
+Ireland;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;4586;;
+Ireland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;9390;;
+Ireland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2640;;
+Ireland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;335;;
+Ireland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;6;d;
+Ireland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;103;;
+Ireland;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;731;;
+Ireland;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;216;;
+Ireland;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;13;;
+Ireland;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;2167;;
+Ireland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;6484;;
+Ireland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;2497;;
+Ireland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;372;;
+Ireland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;9;d;
+Ireland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;272;;
+Ireland;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;1438;;
+Ireland;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;212;;
+Ireland;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;6;d;
+Ireland;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;650;;
+Ireland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;4342;;
+Ireland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;933;;
+Ireland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;16;;
+Ireland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;24;;
+Ireland;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;149;;
+Ireland;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;57;;
+Ireland;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;8;d;
+Ireland;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;243;;
+Ireland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;1494;;
+Ireland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;305;;
+Ireland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;32;;
+Ireland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;273;;
+Ireland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;1194;;
+Ireland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;318;;
+Ireland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;27;;
+Ireland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;66;;
+Ireland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;1382;;
+Ireland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;809;;
+Ireland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;26;;
+Ireland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Education ;Y15-29;2011;323;;
+Ireland;F;POP;TOTAL;Managers;Education ;Y30-49;2011;2323;;
+Ireland;F;POP;TOTAL;Managers;Education ;Y50-64;2011;1389;;
+Ireland;F;POP;TOTAL;Managers;Education ;Y65-84;2011;62;;
+Ireland;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;282;;
+Ireland;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;2436;;
+Ireland;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;1334;;
+Ireland;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;63;;
+Ireland;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;588;;
+Ireland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;1223;;
+Ireland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;352;;
+Ireland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;22;;
+Ireland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;93;;
+Ireland;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;469;;
+Ireland;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;220;;
+Ireland;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;18;;
+Ireland;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3;d;
+Ireland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;d;
+Ireland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;10;;
+Ireland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;8;d;
+Ireland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;d;
+Ireland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;132;;
+Ireland;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;460;;
+Ireland;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;338;;
+Ireland;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;58;;
+Ireland;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;41;;
+Ireland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;173;;
+Ireland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;34;;
+Ireland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;5;d;
+Ireland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;24;;
+Ireland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;71;;
+Ireland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;12;;
+Ireland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;2087;;
+Ireland;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;7863;;
+Ireland;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;849;;
+Ireland;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;38;;
+Ireland;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;3;d;
+Ireland;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;173;;
+Ireland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;532;;
+Ireland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;52;;
+Ireland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;37;;
+Ireland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;150;;
+Ireland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;22;;
+Ireland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;220;;
+Ireland;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;890;;
+Ireland;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;139;;
+Ireland;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;6;d;
+Ireland;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2034;;
+Ireland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;5480;;
+Ireland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1011;;
+Ireland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;99;;
+Ireland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;2;d;
+Ireland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;187;;
+Ireland;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;671;;
+Ireland;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;102;;
+Ireland;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;4;d;
+Ireland;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;359;;
+Ireland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;868;;
+Ireland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;171;;
+Ireland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;15;;
+Ireland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;2671;;
+Ireland;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;7618;;
+Ireland;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;867;;
+Ireland;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;30;;
+Ireland;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;4;d;
+Ireland;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;2308;;
+Ireland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;6513;;
+Ireland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;554;;
+Ireland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;15;;
+Ireland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;103;;
+Ireland;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;286;;
+Ireland;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;36;;
+Ireland;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;3;d;
+Ireland;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;6473;;
+Ireland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;12066;;
+Ireland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;2058;;
+Ireland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;123;;
+Ireland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;4;d;
+Ireland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;809;;
+Ireland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;1972;;
+Ireland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;310;;
+Ireland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;24;;
+Ireland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;864;;
+Ireland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;5165;;
+Ireland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;1814;;
+Ireland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;75;;
+Ireland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;2;d;
+Ireland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;17308;;
+Ireland;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;40863;;
+Ireland;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;15621;;
+Ireland;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;746;;
+Ireland;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;17;;
+Ireland;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;10485;;
+Ireland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;39509;;
+Ireland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;15578;;
+Ireland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;811;;
+Ireland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;7;d;
+Ireland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;589;;
+Ireland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;2272;;
+Ireland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;1011;;
+Ireland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;83;;
+Ireland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;219;;
+Ireland;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;704;;
+Ireland;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;390;;
+Ireland;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;116;;
+Ireland;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;4;d;
+Ireland;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;d;
+Ireland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;4;d;
+Ireland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;11;;
+Ireland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;10;;
+Ireland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;31;;
+Ireland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;12;;
+Ireland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;d;
+Ireland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;471;;
+Ireland;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;1473;;
+Ireland;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;971;;
+Ireland;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;216;;
+Ireland;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;9;d;
+Ireland;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;151;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;376;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;170;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;7;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;28;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;90;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;25;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;2;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;2268;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;7429;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;1472;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;63;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;95;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;299;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;78;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;84;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;228;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;72;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;298;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;1493;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;536;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;39;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3046;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;7498;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2496;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;176;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;6;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;316;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;1126;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;285;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;12;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;2026;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;3919;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;824;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;32;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;1250;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;2576;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;453;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;11;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;2330;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;5070;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;846;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;28;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;278;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;1048;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;348;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;28;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;2888;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;8192;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;2681;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;165;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;688;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;1737;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;438;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;27;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;2125;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;12531;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;6566;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;80;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;754;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;4611;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;2534;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;135;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;3432;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;12649;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;5505;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;279;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;3;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;784;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;1406;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;426;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;25;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;301;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;1234;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;681;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;78;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;18;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;17;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;39;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;21;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;426;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;1227;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;807;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;90;;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;4;d;
+Ireland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;102;;
+Ireland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;373;;
+Ireland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;159;;
+Ireland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;13;;
+Ireland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;39;;
+Ireland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;145;;
+Ireland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;61;;
+Ireland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;4;d;
+Ireland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;1861;;
+Ireland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;5898;;
+Ireland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;1804;;
+Ireland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;95;;
+Ireland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;2;d;
+Ireland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;219;;
+Ireland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;644;;
+Ireland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;315;;
+Ireland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;9;d;
+Ireland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;220;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;421;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;115;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;6;d;
+Ireland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;553;;
+Ireland;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;1940;;
+Ireland;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;717;;
+Ireland;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;33;;
+Ireland;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3495;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;8152;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3309;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;217;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;1575;;
+Ireland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;4493;;
+Ireland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;1778;;
+Ireland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;119;;
+Ireland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;1798;;
+Ireland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;2251;;
+Ireland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;655;;
+Ireland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;43;;
+Ireland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;1456;;
+Ireland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;2452;;
+Ireland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;849;;
+Ireland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;28;;
+Ireland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;8061;;
+Ireland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;14689;;
+Ireland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;4883;;
+Ireland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;93;;
+Ireland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;3;d;
+Ireland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;252;;
+Ireland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;654;;
+Ireland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;251;;
+Ireland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;20;;
+Ireland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;1844;;
+Ireland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;4732;;
+Ireland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;1989;;
+Ireland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;162;;
+Ireland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;4;d;
+Ireland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;2051;;
+Ireland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;3513;;
+Ireland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;985;;
+Ireland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;43;;
+Ireland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;2;d;
+Ireland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1307;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;8197;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;3418;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;58;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;646;;
+Ireland;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;3963;;
+Ireland;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;2106;;
+Ireland;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;102;;
+Ireland;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;1879;;
+Ireland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;8932;;
+Ireland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;4837;;
+Ireland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;201;;
+Ireland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;2;d;
+Ireland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;1421;;
+Ireland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;2111;;
+Ireland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;975;;
+Ireland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;65;;
+Ireland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;404;;
+Ireland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;1194;;
+Ireland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;676;;
+Ireland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;66;;
+Ireland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;9;d;
+Ireland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;23;;
+Ireland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;114;;
+Ireland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;40;;
+Ireland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;586;;
+Ireland;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;1277;;
+Ireland;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;893;;
+Ireland;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;115;;
+Ireland;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;5;d;
+Ireland;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;111;;
+Ireland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;230;;
+Ireland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;135;;
+Ireland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;13;;
+Ireland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;5;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;11;;
+Ireland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;1;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;778;;
+Ireland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;1401;;
+Ireland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;571;;
+Ireland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;38;;
+Ireland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;32;;
+Ireland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;33;;
+Ireland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;9;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;18;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;31;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;9;d;
+Ireland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;96;;
+Ireland;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;244;;
+Ireland;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;83;;
+Ireland;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;6;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;29766;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;34496;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;14524;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;923;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;15;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;808;;
+Ireland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;1453;;
+Ireland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;303;;
+Ireland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;24;;
+Ireland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;11083;;
+Ireland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;9001;;
+Ireland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;3169;;
+Ireland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;208;;
+Ireland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;10;;
+Ireland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;496;;
+Ireland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;560;;
+Ireland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;104;;
+Ireland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;6;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;711;;
+Ireland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;1047;;
+Ireland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;156;;
+Ireland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;6;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;125;;
+Ireland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;336;;
+Ireland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;152;;
+Ireland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;18;;
+Ireland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;597;;
+Ireland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;786;;
+Ireland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;355;;
+Ireland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;33;;
+Ireland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;1008;;
+Ireland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;1767;;
+Ireland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;863;;
+Ireland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;82;;
+Ireland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1640;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;3909;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;1594;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;101;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;6715;;
+Ireland;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;15379;;
+Ireland;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;6275;;
+Ireland;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;200;;
+Ireland;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;4;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;8580;;
+Ireland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;23810;;
+Ireland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;13977;;
+Ireland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;799;;
+Ireland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;7;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;761;;
+Ireland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;745;;
+Ireland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;301;;
+Ireland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;24;;
+Ireland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;10130;;
+Ireland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;9701;;
+Ireland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;2069;;
+Ireland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;223;;
+Ireland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;4;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;535;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;690;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;377;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;32;;
+Ireland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;17;;
+Ireland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;10;;
+Ireland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;d;
+Ireland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;2114;;
+Ireland;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;3605;;
+Ireland;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;2652;;
+Ireland;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;257;;
+Ireland;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;11;;
+Ireland;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;181;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;1718;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;3066;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;1691;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;116;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;2;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;2;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;15;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;8;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;2;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;7;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;2;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;24;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;114;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;57;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;1;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;1;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;4;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;19;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;5;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;4;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;2;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;2;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;1;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;13;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;6;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;20;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;166;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;86;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;5;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;5;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;32;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;13;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;3;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;22;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;18;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;5;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;26;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;14;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;8;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;25;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;6;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;4;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;2;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;5;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;2;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;8;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;44;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;67;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;30;;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;15;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;25;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;15;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;3;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;7;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;2;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;980;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;3340;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;1201;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;67;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;2;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;12;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;31;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;9;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;15;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;120;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;266;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;68;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;10;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;495;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1336;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;510;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;35;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;25;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;61;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;11;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;2;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;33;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;94;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;34;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;5;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;125;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;216;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;30;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;37;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;96;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;24;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;3;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;5;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;1;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;54;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;169;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;46;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;51;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;93;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;27;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;3;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;14;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;65;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;20;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;17;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;56;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;33;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;26;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;89;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;27;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;5;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;16;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;47;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;17;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;4;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;30;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;178;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;70;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;6;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;72;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;269;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;200;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;38;;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;2;d;
+Ireland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;54;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;101;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;26;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;4;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;5;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;8;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;5;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;3446;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;9987;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;3623;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;98;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;6;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;5;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;5;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;7;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;20;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;7;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;13;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;51;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;21;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;604;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1190;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;468;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;27;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;83;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;777;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;459;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;47;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;85;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;107;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;44;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;2;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;60;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;110;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;32;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;6;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;19;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;6;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;3;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;7;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;4;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;32;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;89;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;40;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;3;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;57;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;121;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;46;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;23;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;32;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;25;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;8;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;45;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;39;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;4;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;85;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;184;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;111;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;3;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;6;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;19;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;4;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;50;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;106;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;92;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;8;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;168;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;475;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;417;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;47;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;640;;
+Ireland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;1108;;
+Ireland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;420;;
+Ireland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;46;;
+Ireland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;3;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;17;;
+Ireland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;7;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;961;;
+Ireland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;2162;;
+Ireland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;968;;
+Ireland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;40;;
+Ireland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;8;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;24;;
+Ireland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;28;;
+Ireland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;51;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;109;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;43;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;77;;
+Ireland;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;199;;
+Ireland;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;95;;
+Ireland;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;12;;
+Ireland;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1169;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1924;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1016;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;49;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;2;d;
+Ireland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;205;;
+Ireland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;438;;
+Ireland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;198;;
+Ireland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;10;;
+Ireland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;5198;;
+Ireland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;6853;;
+Ireland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;3086;;
+Ireland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;152;;
+Ireland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;213;;
+Ireland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;244;;
+Ireland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;79;;
+Ireland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;10;;
+Ireland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;70;;
+Ireland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;201;;
+Ireland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;212;;
+Ireland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;9;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;14;;
+Ireland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;38;;
+Ireland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;19;;
+Ireland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;4;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;50;;
+Ireland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;177;;
+Ireland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;114;;
+Ireland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;13;;
+Ireland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;2536;;
+Ireland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;5525;;
+Ireland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;3046;;
+Ireland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;161;;
+Ireland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;5;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;79;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;653;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;862;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;72;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;332;;
+Ireland;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;1661;;
+Ireland;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;1707;;
+Ireland;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;164;;
+Ireland;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;865;;
+Ireland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;3381;;
+Ireland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;2584;;
+Ireland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;124;;
+Ireland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;200;;
+Ireland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;396;;
+Ireland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;227;;
+Ireland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;14;;
+Ireland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;302;;
+Ireland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;865;;
+Ireland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;530;;
+Ireland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;54;;
+Ireland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;11;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;11;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;20;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;4;d;
+Ireland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;9;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;7;d;
+Ireland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;532;;
+Ireland;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;1273;;
+Ireland;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;1147;;
+Ireland;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;117;;
+Ireland;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;11;;
+Ireland;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;29;;
+Ireland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;90;;
+Ireland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;48;;
+Ireland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;25;;
+Ireland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;1;d;
+Ireland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;2;d;
+Ireland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;5;d;
+Ireland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;251;;
+Ireland;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;478;;
+Ireland;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;204;;
+Ireland;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;19;;
+Ireland;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;6;d;
+Ireland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;10;;
+Ireland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;6;d;
+Ireland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;11;;
+Ireland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;13;;
+Ireland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;4;d;
+Ireland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;18;;
+Ireland;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;44;;
+Ireland;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;23;;
+Ireland;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;631;;
+Ireland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;726;;
+Ireland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;372;;
+Ireland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;49;;
+Ireland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;2;d;
+Ireland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;35;;
+Ireland;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;63;;
+Ireland;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;38;;
+Ireland;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;7;d;
+Ireland;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;456;;
+Ireland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;455;;
+Ireland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;197;;
+Ireland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;24;;
+Ireland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;88;;
+Ireland;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;96;;
+Ireland;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;34;;
+Ireland;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;4;d;
+Ireland;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;118;;
+Ireland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;143;;
+Ireland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;48;;
+Ireland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;8;d;
+Ireland;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;18;;
+Ireland;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;11;;
+Ireland;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;1;d;
+Ireland;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;95;;
+Ireland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;135;;
+Ireland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;59;;
+Ireland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;10;;
+Ireland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;147;;
+Ireland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;251;;
+Ireland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;188;;
+Ireland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;15;;
+Ireland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;73;;
+Ireland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;163;;
+Ireland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;138;;
+Ireland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;14;;
+Ireland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;1330;;
+Ireland;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;870;;
+Ireland;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;333;;
+Ireland;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;29;;
+Ireland;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;329;;
+Ireland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;815;;
+Ireland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;521;;
+Ireland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;44;;
+Ireland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;86;;
+Ireland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;97;;
+Ireland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;40;;
+Ireland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;7;d;
+Ireland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;208;;
+Ireland;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;195;;
+Ireland;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;88;;
+Ireland;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;13;;
+Ireland;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;1;d;
+Ireland;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;10;;
+Ireland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;17;;
+Ireland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;15;;
+Ireland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;2;d;
+Ireland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;4;d;
+Ireland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;9;d;
+Ireland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;2;d;
+Ireland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;36799;;
+Ireland;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;34783;;
+Ireland;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;18398;;
+Ireland;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;2666;;
+Ireland;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;143;;
+Ireland;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;207324;;
+Ireland;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;54002;;
+Ireland;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;83668;;
+Ireland;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;189877;;
+Ireland;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;17692;;
+Ireland;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;499927;;
+Ireland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;1;d;
+Ireland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;3;d;
+Ireland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;23;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;43;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;15;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;1;d;
+Ireland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;1;d;
+Ireland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;1;d;
+Ireland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;2269;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;3710;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;1392;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;42;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;1;d;
+Ireland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;2;d;
+Ireland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;1;d;
+Ireland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;4;d;
+Ireland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;3;d;
+Ireland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;4;d;
+Ireland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;201;;
+Ireland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;903;;
+Ireland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;527;;
+Ireland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;65;;
+Ireland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;25;;
+Ireland;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;246;;
+Ireland;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;159;;
+Ireland;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;24;;
+Ireland;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;627;;
+Ireland;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;8661;;
+Ireland;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;3962;;
+Ireland;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;416;;
+Ireland;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;33;;
+Ireland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;432;;
+Ireland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;248;;
+Ireland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;8;d;
+Ireland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;99;;
+Ireland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;613;;
+Ireland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;238;;
+Ireland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;19;;
+Ireland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;404;;
+Ireland;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;4101;;
+Ireland;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;1726;;
+Ireland;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;165;;
+Ireland;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;4327;;
+Ireland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;17079;;
+Ireland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;6538;;
+Ireland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1018;;
+Ireland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;11;;
+Ireland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;256;;
+Ireland;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;2731;;
+Ireland;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;1256;;
+Ireland;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;107;;
+Ireland;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;2271;;
+Ireland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;8484;;
+Ireland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;3430;;
+Ireland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;525;;
+Ireland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;9;d;
+Ireland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;330;;
+Ireland;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;3114;;
+Ireland;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;904;;
+Ireland;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;59;;
+Ireland;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;554;;
+Ireland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;4923;;
+Ireland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;2030;;
+Ireland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;102;;
+Ireland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;29;;
+Ireland;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;303;;
+Ireland;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;173;;
+Ireland;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;26;;
+Ireland;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;266;;
+Ireland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;2450;;
+Ireland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;1075;;
+Ireland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;127;;
+Ireland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;350;;
+Ireland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;2293;;
+Ireland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;921;;
+Ireland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;111;;
+Ireland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;78;;
+Ireland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;1777;;
+Ireland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;2060;;
+Ireland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;86;;
+Ireland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Education ;Y15-29;2011;125;;
+Ireland;M;POP;TOTAL;Managers;Education ;Y30-49;2011;1321;;
+Ireland;M;POP;TOTAL;Managers;Education ;Y50-64;2011;1248;;
+Ireland;M;POP;TOTAL;Managers;Education ;Y65-84;2011;61;;
+Ireland;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;75;;
+Ireland;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;1046;;
+Ireland;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;765;;
+Ireland;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;45;;
+Ireland;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;486;;
+Ireland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;1545;;
+Ireland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;598;;
+Ireland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;71;;
+Ireland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;51;;
+Ireland;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;434;;
+Ireland;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;267;;
+Ireland;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;38;;
+Ireland;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;d;
+Ireland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;d;
+Ireland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;d;
+Ireland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;22;;
+Ireland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;26;;
+Ireland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;4;d;
+Ireland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;203;;
+Ireland;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;1019;;
+Ireland;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;796;;
+Ireland;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;189;;
+Ireland;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;4;d;
+Ireland;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;60;;
+Ireland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;262;;
+Ireland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;126;;
+Ireland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;12;;
+Ireland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;62;;
+Ireland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;218;;
+Ireland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;139;;
+Ireland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;10;;
+Ireland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;2949;;
+Ireland;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;14613;;
+Ireland;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;3064;;
+Ireland;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;162;;
+Ireland;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;4;d;
+Ireland;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;345;;
+Ireland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1313;;
+Ireland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;568;;
+Ireland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;15;;
+Ireland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;93;;
+Ireland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;384;;
+Ireland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;130;;
+Ireland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;12;;
+Ireland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;1771;;
+Ireland;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;5071;;
+Ireland;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;1347;;
+Ireland;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;118;;
+Ireland;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1664;;
+Ireland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;7569;;
+Ireland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2252;;
+Ireland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;203;;
+Ireland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;264;;
+Ireland;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;1287;;
+Ireland;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;451;;
+Ireland;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;25;;
+Ireland;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;232;;
+Ireland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;725;;
+Ireland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;181;;
+Ireland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;24;;
+Ireland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;4695;;
+Ireland;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;18892;;
+Ireland;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;5015;;
+Ireland;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;205;;
+Ireland;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;3;d;
+Ireland;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;2490;;
+Ireland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;8776;;
+Ireland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;1645;;
+Ireland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;98;;
+Ireland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;106;;
+Ireland;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;466;;
+Ireland;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;148;;
+Ireland;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;16;;
+Ireland;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;5835;;
+Ireland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;17165;;
+Ireland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;7174;;
+Ireland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;1122;;
+Ireland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;14;;
+Ireland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;629;;
+Ireland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;2028;;
+Ireland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;521;;
+Ireland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;46;;
+Ireland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;411;;
+Ireland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;3613;;
+Ireland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;1963;;
+Ireland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;105;;
+Ireland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;4302;;
+Ireland;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;14373;;
+Ireland;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;7952;;
+Ireland;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;462;;
+Ireland;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;6;d;
+Ireland;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;1511;;
+Ireland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;9211;;
+Ireland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;4256;;
+Ireland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;522;;
+Ireland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;10;;
+Ireland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;657;;
+Ireland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;2592;;
+Ireland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;1043;;
+Ireland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;135;;
+Ireland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;171;;
+Ireland;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;1138;;
+Ireland;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;1163;;
+Ireland;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;742;;
+Ireland;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;23;;
+Ireland;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2;d;
+Ireland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;d;
+Ireland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;d;
+Ireland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;9;d;
+Ireland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;28;;
+Ireland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;11;;
+Ireland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;653;;
+Ireland;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;2104;;
+Ireland;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;1313;;
+Ireland;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;347;;
+Ireland;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;5;d;
+Ireland;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;324;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;386;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;154;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;14;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;45;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;173;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;111;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;7;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;2756;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;12137;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;2991;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;161;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;3;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;268;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1213;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;909;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;15;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;111;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;520;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;309;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;17;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;743;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;3220;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;1158;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;44;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2362;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;7666;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2638;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;304;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;382;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;1934;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;693;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;35;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;3903;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;8057;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;1219;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;50;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;2126;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;4724;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;993;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;49;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;1831;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;4652;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;1087;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;112;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;3;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;188;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;897;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;500;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;107;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;1422;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;4211;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;1501;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;136;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;617;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;1478;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;396;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;31;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1196;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;7286;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;4970;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;103;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;470;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;1700;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;852;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;30;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;648;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;3344;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;1510;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;65;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;1201;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;1574;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;379;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;16;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;209;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;603;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;256;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;12;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;5;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;18;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;7;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;629;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;1658;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;863;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;111;;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;36;;
+Ireland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;79;;
+Ireland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;52;;
+Ireland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;5;d;
+Ireland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;17;;
+Ireland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;37;;
+Ireland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;47;;
+Ireland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;789;;
+Ireland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;2071;;
+Ireland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;612;;
+Ireland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;23;;
+Ireland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;127;;
+Ireland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;250;;
+Ireland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;190;;
+Ireland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;19;;
+Ireland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;55;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;112;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;52;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;5;d;
+Ireland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;115;;
+Ireland;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;289;;
+Ireland;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;163;;
+Ireland;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;10;;
+Ireland;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1281;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1990;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;657;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;49;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;1456;;
+Ireland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;6164;;
+Ireland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;3326;;
+Ireland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;113;;
+Ireland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;348;;
+Ireland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;417;;
+Ireland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;94;;
+Ireland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;14;;
+Ireland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;1003;;
+Ireland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;1255;;
+Ireland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;323;;
+Ireland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;10;;
+Ireland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;4007;;
+Ireland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;5246;;
+Ireland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;1299;;
+Ireland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;43;;
+Ireland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;43;;
+Ireland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;59;;
+Ireland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;17;;
+Ireland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;6;d;
+Ireland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;652;;
+Ireland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;905;;
+Ireland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;392;;
+Ireland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;48;;
+Ireland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;759;;
+Ireland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;998;;
+Ireland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;281;;
+Ireland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;35;;
+Ireland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;435;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;2412;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;1705;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;43;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;163;;
+Ireland;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;454;;
+Ireland;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;283;;
+Ireland;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;17;;
+Ireland;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;250;;
+Ireland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;869;;
+Ireland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;438;;
+Ireland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;18;;
+Ireland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;720;;
+Ireland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;861;;
+Ireland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;318;;
+Ireland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;23;;
+Ireland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;84;;
+Ireland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;254;;
+Ireland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;213;;
+Ireland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;29;;
+Ireland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;12;;
+Ireland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;95;;
+Ireland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;44;;
+Ireland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;d;
+Ireland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;316;;
+Ireland;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;583;;
+Ireland;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;354;;
+Ireland;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;49;;
+Ireland;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;134;;
+Ireland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;459;;
+Ireland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;287;;
+Ireland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;49;;
+Ireland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;9;d;
+Ireland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;18;;
+Ireland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;17;;
+Ireland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;3;d;
+Ireland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;606;;
+Ireland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;1681;;
+Ireland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;777;;
+Ireland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;88;;
+Ireland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;3;d;
+Ireland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;44;;
+Ireland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;61;;
+Ireland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;49;;
+Ireland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;7;d;
+Ireland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;25;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;111;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;59;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;2;d;
+Ireland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;183;;
+Ireland;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;709;;
+Ireland;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;347;;
+Ireland;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;38;;
+Ireland;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;16426;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;16586;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;6048;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;751;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;10;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;379;;
+Ireland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;1187;;
+Ireland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;492;;
+Ireland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;33;;
+Ireland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;6529;;
+Ireland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;5523;;
+Ireland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;1414;;
+Ireland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;114;;
+Ireland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;461;;
+Ireland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;425;;
+Ireland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;126;;
+Ireland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;13;;
+Ireland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;525;;
+Ireland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;1046;;
+Ireland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;419;;
+Ireland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;36;;
+Ireland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;133;;
+Ireland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;606;;
+Ireland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;405;;
+Ireland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;79;;
+Ireland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;326;;
+Ireland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;533;;
+Ireland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;238;;
+Ireland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;29;;
+Ireland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;2440;;
+Ireland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;5665;;
+Ireland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;2484;;
+Ireland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;239;;
+Ireland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;2853;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;9880;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;2761;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;100;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;3;d;
+Ireland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;499;;
+Ireland;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;1886;;
+Ireland;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;2010;;
+Ireland;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;251;;
+Ireland;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;1088;;
+Ireland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;4512;;
+Ireland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;1941;;
+Ireland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;81;;
+Ireland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;644;;
+Ireland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;672;;
+Ireland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;402;;
+Ireland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;42;;
+Ireland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;719;;
+Ireland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;1588;;
+Ireland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;690;;
+Ireland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;157;;
+Ireland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;4;d;
+Ireland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;19;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;58;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;43;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;3;d;
+Ireland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;d;
+Ireland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;19;;
+Ireland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;12;;
+Ireland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;d;
+Ireland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;789;;
+Ireland;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;1607;;
+Ireland;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;1094;;
+Ireland;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;196;;
+Ireland;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;4;d;
+Ireland;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;3393;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;26533;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;28655;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;11940;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;358;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;1;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;7;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;4;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;42;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;155;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;87;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;5;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;9;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;2;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;7;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;8;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;48;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;141;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;59;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;3;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;91;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;254;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;118;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;12;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;6;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;20;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;8;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;2;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;53;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;156;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;103;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;5;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;5;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;11;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;7;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;1;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;1;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;9;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;10;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;6;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;17;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;4;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;11;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;48;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;19;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;3;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;705;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;2258;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;931;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;68;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;16;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;133;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;105;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;3;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;41;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;165;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;149;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;12;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;22;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;125;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;125;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;7;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;405;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;859;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;499;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;35;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;4;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;42;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;54;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;3;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;11;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;8;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;2;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;3;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;189;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;936;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;852;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;232;;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;8;d;
+Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;269;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;503;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;240;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;18;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;173;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;380;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;324;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;9;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;8650;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;25580;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;9328;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;451;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;10;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;446;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;904;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;574;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;16;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;144;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;377;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;164;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;9;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;24542;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;46220;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;16777;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;835;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;16;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;7740;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;14120;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5630;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;494;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;8;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;711;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;1683;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;846;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;28;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;206;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;513;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;251;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;19;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;503;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;1482;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;351;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;15;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;91;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;299;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;89;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;2;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;45;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;90;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;49;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;1;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;1361;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;2640;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;936;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;48;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;633;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;1865;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;572;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;22;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;245;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;958;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;987;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;28;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;254;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;468;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;350;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;24;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;128;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;619;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;560;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;23;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;81;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;263;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;172;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;20;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;198;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;839;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;440;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;50;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;3;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;4117;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;9590;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;5719;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;402;;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;9;d;
+Ireland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;554;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;770;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;324;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;21;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;349;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;1606;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;992;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;47;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;6428;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;19840;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;6827;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;218;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;30;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;192;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;131;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;4;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;320;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1489;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;542;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;20;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;1243;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;4086;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;1664;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;72;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2465;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;7943;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3301;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;180;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;2450;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;20751;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;12821;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;1349;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;9;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;237;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;415;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;124;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;12;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;98;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;258;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;102;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;7;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;9;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;53;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;32;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;1;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;8;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;25;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;13;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;135;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;376;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;159;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;5;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;859;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;2376;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;1087;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;76;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;151;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;829;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;877;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;35;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;32;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;149;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;181;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;24;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;80;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;353;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;501;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;54;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;34;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;100;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;88;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;10;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;43;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;202;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;127;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;18;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;2;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;22;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;24;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;4;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;966;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;3240;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;2275;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;199;;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;5;d;
+Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;1907;;
+Ireland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;3130;;
+Ireland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;1660;;
+Ireland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;191;;
+Ireland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;5;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;72;;
+Ireland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;194;;
+Ireland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;180;;
+Ireland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;3;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;3;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;2366;;
+Ireland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;6044;;
+Ireland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;2183;;
+Ireland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;77;;
+Ireland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;3;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;38;;
+Ireland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;203;;
+Ireland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;124;;
+Ireland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;3;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;616;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1228;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;503;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;22;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;5093;;
+Ireland;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;13548;;
+Ireland;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;5721;;
+Ireland;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;172;;
+Ireland;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;3;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;4079;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;6161;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1843;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;92;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;d;
+Ireland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;1356;;
+Ireland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;3239;;
+Ireland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;1177;;
+Ireland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;44;;
+Ireland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;3731;;
+Ireland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;4252;;
+Ireland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;1126;;
+Ireland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;54;;
+Ireland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;368;;
+Ireland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;403;;
+Ireland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;119;;
+Ireland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;4;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;66;;
+Ireland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;158;;
+Ireland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;182;;
+Ireland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;5;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;28;;
+Ireland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;83;;
+Ireland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;49;;
+Ireland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;7;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;231;;
+Ireland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;515;;
+Ireland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;259;;
+Ireland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;20;;
+Ireland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;1676;;
+Ireland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;3411;;
+Ireland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;1282;;
+Ireland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;68;;
+Ireland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;5;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;226;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;2208;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;2452;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;83;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;248;;
+Ireland;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;607;;
+Ireland;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;619;;
+Ireland;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;34;;
+Ireland;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;515;;
+Ireland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;1811;;
+Ireland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;1218;;
+Ireland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;29;;
+Ireland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;206;;
+Ireland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;386;;
+Ireland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;270;;
+Ireland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;18;;
+Ireland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;224;;
+Ireland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;585;;
+Ireland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;296;;
+Ireland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;34;;
+Ireland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;5;d;
+Ireland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;4;d;
+Ireland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;d;
+Ireland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;8;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;5;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;1594;;
+Ireland;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;3832;;
+Ireland;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;2764;;
+Ireland;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;191;;
+Ireland;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;7;d;
+Ireland;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;107;;
+Ireland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;234;;
+Ireland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;205;;
+Ireland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;94;;
+Ireland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;15;;
+Ireland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;36;;
+Ireland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;35;;
+Ireland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;5;d;
+Ireland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;580;;
+Ireland;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;1238;;
+Ireland;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;437;;
+Ireland;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;32;;
+Ireland;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;4;d;
+Ireland;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;20;;
+Ireland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;45;;
+Ireland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;37;;
+Ireland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;d;
+Ireland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;56;;
+Ireland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;87;;
+Ireland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;44;;
+Ireland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;6;d;
+Ireland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;416;;
+Ireland;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;707;;
+Ireland;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;273;;
+Ireland;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;34;;
+Ireland;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;749;;
+Ireland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;982;;
+Ireland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;377;;
+Ireland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;60;;
+Ireland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;106;;
+Ireland;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;356;;
+Ireland;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;220;;
+Ireland;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;31;;
+Ireland;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;332;;
+Ireland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;419;;
+Ireland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;111;;
+Ireland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;19;;
+Ireland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;110;;
+Ireland;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;181;;
+Ireland;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;65;;
+Ireland;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;5;d;
+Ireland;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;88;;
+Ireland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;131;;
+Ireland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;42;;
+Ireland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;7;d;
+Ireland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;6;d;
+Ireland;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;16;;
+Ireland;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;12;;
+Ireland;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;120;;
+Ireland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;176;;
+Ireland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;103;;
+Ireland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;17;;
+Ireland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;153;;
+Ireland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;274;;
+Ireland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;129;;
+Ireland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;12;;
+Ireland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;71;;
+Ireland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;238;;
+Ireland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;224;;
+Ireland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;18;;
+Ireland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;1229;;
+Ireland;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;551;;
+Ireland;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;226;;
+Ireland;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;15;;
+Ireland;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;2;d;
+Ireland;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;154;;
+Ireland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;274;;
+Ireland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;167;;
+Ireland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;14;;
+Ireland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;74;;
+Ireland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;96;;
+Ireland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;63;;
+Ireland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;9;d;
+Ireland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;44;;
+Ireland;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;91;;
+Ireland;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;57;;
+Ireland;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;14;;
+Ireland;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;1;d;
+Ireland;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;4;d;
+Ireland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;d;
+Ireland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;d;
+Ireland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;6;d;
+Ireland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;5;d;
+Ireland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Ireland;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;48010;;
+Ireland;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;48655;;
+Ireland;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;21424;;
+Ireland;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;2551;;
+Ireland;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;74;;
+Ireland;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;:;c;
+Iceland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Education ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Education ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Education ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Education ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;:;c;
+Iceland;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;:;c;
+Iceland;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;:;c;
+Iceland;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;:;c;
+Iceland;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Iceland;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;:;c;
+Iceland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Education ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Education ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Education ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Education ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;:;c;
+Iceland;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;:;c;
+Iceland;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;:;c;
+Iceland;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;:;c;
+Iceland;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Iceland;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Italy;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat.
+Italy;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Italy;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;1192;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;1271;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;1554;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;2290;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;376;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;2829;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;5;;
+Liechtenstein;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;41;;
+Liechtenstein;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;6;;
+Liechtenstein;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;4;;
+Liechtenstein;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;4;;
+Liechtenstein;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;20;;
+Liechtenstein;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;16;;
+Liechtenstein;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;8;;
+Liechtenstein;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;28;;
+Liechtenstein;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;15;;
+Liechtenstein;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;4;;
+Liechtenstein;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;4;;
+Liechtenstein;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;17;;
+Liechtenstein;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;5;;
+Liechtenstein;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;4;;
+Liechtenstein;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;14;;
+Liechtenstein;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;17;;
+Liechtenstein;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;15;;
+Liechtenstein;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;5;;
+Liechtenstein;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Education ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Education ;Y30-49;2011;8;;
+Liechtenstein;F;POP;TOTAL;Managers;Education ;Y50-64;2011;8;;
+Liechtenstein;F;POP;TOTAL;Managers;Education ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;23;;
+Liechtenstein;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;13;;
+Liechtenstein;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;9;;
+Liechtenstein;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;11;;
+Liechtenstein;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;21;;
+Liechtenstein;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;8;;
+Liechtenstein;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;17;;
+Liechtenstein;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;39;;
+Liechtenstein;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;9;;
+Liechtenstein;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;6;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;20;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;4;;
+Liechtenstein;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;22;;
+Liechtenstein;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;7;;
+Liechtenstein;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;9;;
+Liechtenstein;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;25;;
+Liechtenstein;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;4;;
+Liechtenstein;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;50;;
+Liechtenstein;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;134;;
+Liechtenstein;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;51;;
+Liechtenstein;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;3;;
+Liechtenstein;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;9;;
+Liechtenstein;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;4;;
+Liechtenstein;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;12;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;59;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;18;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;69;;
+Liechtenstein;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;246;;
+Liechtenstein;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;100;;
+Liechtenstein;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;3;;
+Liechtenstein;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;49;;
+Liechtenstein;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;113;;
+Liechtenstein;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;38;;
+Liechtenstein;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;4;;
+Liechtenstein;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;19;;
+Liechtenstein;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;6;;
+Liechtenstein;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;19;;
+Liechtenstein;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;12;;
+Liechtenstein;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;47;;
+Liechtenstein;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;98;;
+Liechtenstein;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;30;;
+Liechtenstein;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;4;;
+Liechtenstein;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;69;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;75;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;22;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;4;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;6;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;5;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;39;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;38;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;21;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;6;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;4;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;3;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;4;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;3;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;5;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;5;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;122;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;124;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;48;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;4;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;76;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;111;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;34;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;5;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;5;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;6;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;33;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;45;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;34;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;3;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;17;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;75;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;148;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;79;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;10;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;4;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;4;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;16;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;8;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;35;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;57;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;9;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;61;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;132;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;85;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;3;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;4;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;8;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;44;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;26;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;19;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;64;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;47;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;5;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;13;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;58;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;20;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;5;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;11;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;4;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;9;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;25;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;6;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;55;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;111;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;83;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;4;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;71;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;171;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;122;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;9;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;11;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;43;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;16;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;42;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;122;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;60;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;3;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;18;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;3;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;6;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;32;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;25;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;9;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;6;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;4;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;13;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;12;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;16;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;22;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;13;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;20;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;27;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;17;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;5;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;73;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;98;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;64;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;5;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;5;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;3;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;32;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;73;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;28;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;3;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;6;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;6;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;4;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;5;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;6;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;5;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;5;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;3;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;3;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;14;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;10;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;3;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;9;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;10;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;95;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;101;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;54;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;7;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;8;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;39;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;67;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;28;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;3;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;8;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;11;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;48;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;52;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;38;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;3;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;3;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;29;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;69;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;16;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;5;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;12;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;7;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;7;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;4;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;5;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;17;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;4;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;31;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;17;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;4;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;5;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;4;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;47;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;119;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;51;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;3;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;3;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;29;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;10;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;8;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;6;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;4;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;21;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;4;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;6;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;3;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;12;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;11;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;4;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;30;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;16;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;21;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;54;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;14;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;4;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;46;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;35;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;5;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;9;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;5;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;22;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;19;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;3;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;5;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;5;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;10;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;8;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;5;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;5;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;9;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;13;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;8;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;3;;
+Liechtenstein;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;8;;
+Liechtenstein;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;5;;
+Liechtenstein;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;74;;
+Liechtenstein;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;151;;
+Liechtenstein;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;75;;
+Liechtenstein;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;3;;
+Liechtenstein;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;5;;
+Liechtenstein;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;10;;
+Liechtenstein;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;20;;
+Liechtenstein;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;25;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;53;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;56;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;7;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;6;;
+Liechtenstein;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;27;;
+Liechtenstein;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;10;;
+Liechtenstein;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;37;;
+Liechtenstein;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;47;;
+Liechtenstein;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;28;;
+Liechtenstein;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;7;;
+Liechtenstein;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;10;;
+Liechtenstein;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;21;;
+Liechtenstein;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;24;;
+Liechtenstein;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;20;;
+Liechtenstein;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;5;;
+Liechtenstein;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;6;;
+Liechtenstein;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;36;;
+Liechtenstein;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;73;;
+Liechtenstein;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;45;;
+Liechtenstein;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;22;;
+Liechtenstein;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;67;;
+Liechtenstein;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;20;;
+Liechtenstein;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;10;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;29;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;33;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;3;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;15;;
+Liechtenstein;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;30;;
+Liechtenstein;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;9;;
+Liechtenstein;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;47;;
+Liechtenstein;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;68;;
+Liechtenstein;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;48;;
+Liechtenstein;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;9;;
+Liechtenstein;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;5;;
+Liechtenstein;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;5;;
+Liechtenstein;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;3;;
+Liechtenstein;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;3;;
+Liechtenstein;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;18;;
+Liechtenstein;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;25;;
+Liechtenstein;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;11;;
+Liechtenstein;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;3;;
+Liechtenstein;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;14;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;10;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Liechtenstein;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;56;;
+Liechtenstein;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;81;;
+Liechtenstein;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;45;;
+Liechtenstein;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;9;;
+Liechtenstein;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;1003;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;263;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;838;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;1769;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;158;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;2946;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;5;;
+Liechtenstein;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;14;;
+Liechtenstein;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;274;;
+Liechtenstein;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;130;;
+Liechtenstein;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;8;;
+Liechtenstein;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;11;;
+Liechtenstein;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;6;;
+Liechtenstein;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;44;;
+Liechtenstein;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;30;;
+Liechtenstein;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;9;;
+Liechtenstein;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;84;;
+Liechtenstein;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;51;;
+Liechtenstein;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;8;;
+Liechtenstein;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;21;;
+Liechtenstein;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;15;;
+Liechtenstein;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;4;;
+Liechtenstein;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;30;;
+Liechtenstein;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;30;;
+Liechtenstein;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;3;;
+Liechtenstein;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;40;;
+Liechtenstein;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;12;;
+Liechtenstein;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;4;;
+Liechtenstein;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;68;;
+Liechtenstein;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;31;;
+Liechtenstein;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;10;;
+Liechtenstein;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;66;;
+Liechtenstein;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;47;;
+Liechtenstein;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;8;;
+Liechtenstein;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;6;;
+Liechtenstein;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;15;;
+Liechtenstein;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;7;;
+Liechtenstein;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;43;;
+Liechtenstein;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;34;;
+Liechtenstein;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Education ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Education ;Y30-49;2011;16;;
+Liechtenstein;M;POP;TOTAL;Managers;Education ;Y50-64;2011;8;;
+Liechtenstein;M;POP;TOTAL;Managers;Education ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;14;;
+Liechtenstein;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;8;;
+Liechtenstein;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;11;;
+Liechtenstein;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;6;;
+Liechtenstein;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;12;;
+Liechtenstein;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;4;;
+Liechtenstein;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;12;;
+Liechtenstein;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;44;;
+Liechtenstein;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;21;;
+Liechtenstein;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;4;;
+Liechtenstein;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;61;;
+Liechtenstein;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;173;;
+Liechtenstein;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;78;;
+Liechtenstein;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;3;;
+Liechtenstein;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;5;;
+Liechtenstein;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;17;;
+Liechtenstein;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;13;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;34;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;18;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;7;;
+Liechtenstein;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;8;;
+Liechtenstein;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;31;;
+Liechtenstein;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;81;;
+Liechtenstein;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;22;;
+Liechtenstein;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;4;;
+Liechtenstein;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;30;;
+Liechtenstein;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;119;;
+Liechtenstein;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;32;;
+Liechtenstein;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;4;;
+Liechtenstein;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;48;;
+Liechtenstein;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;311;;
+Liechtenstein;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;209;;
+Liechtenstein;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;44;;
+Liechtenstein;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;3;;
+Liechtenstein;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;12;;
+Liechtenstein;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;4;;
+Liechtenstein;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;16;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;62;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;48;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;13;;
+Liechtenstein;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;98;;
+Liechtenstein;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;94;;
+Liechtenstein;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;5;;
+Liechtenstein;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;62;;
+Liechtenstein;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;55;;
+Liechtenstein;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;6;;
+Liechtenstein;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;4;;
+Liechtenstein;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;16;;
+Liechtenstein;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;8;;
+Liechtenstein;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;19;;
+Liechtenstein;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;8;;
+Liechtenstein;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;44;;
+Liechtenstein;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;59;;
+Liechtenstein;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;31;;
+Liechtenstein;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;9;;
+Liechtenstein;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;7;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;5;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;101;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;209;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;135;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;3;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;19;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;7;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;10;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;18;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;70;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;33;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;4;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;34;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;61;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;38;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;6;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;7;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;10;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;6;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;13;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;22;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;6;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;94;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;205;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;77;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;10;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;8;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;80;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;128;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;68;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;6;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;5;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;14;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;3;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;34;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;116;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;74;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;7;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;21;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;12;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;14;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;15;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;12;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;5;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;9;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;9;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;32;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;47;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;19;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;5;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;27;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;75;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;60;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;7;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;3;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;12;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;5;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;11;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;26;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;9;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;3;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;8;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;27;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;14;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;36;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;53;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;31;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;25;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;33;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;29;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;4;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;5;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;14;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;45;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;29;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;4;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;9;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;5;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;5;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;3;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;4;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;20;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;11;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;4;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;16;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;31;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;28;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;4;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;21;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;62;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;14;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;9;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;6;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;6;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;14;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;10;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;8;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;13;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;11;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;14;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;83;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;52;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;4;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;12;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;6;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;7;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;10;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;7;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;4;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;3;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;16;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;12;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;6;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;5;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;21;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;15;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;13;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;19;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;51;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;31;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;3;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;13;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;20;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;11;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;7;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;15;;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;226;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;279;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;161;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;7;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;25;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;15;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;11;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;4;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;275;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;296;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;134;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;11;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;67;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;73;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;42;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;11;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;5;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;11;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;6;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;8;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;16;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;4;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;6;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;7;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;3;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;41;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;23;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;5;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;6;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;4;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;23;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;57;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;40;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;8;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;11;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;42;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;26;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;23;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;6;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;70;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;50;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;4;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;3;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;5;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;14;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;8;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;7;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;50;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;104;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;41;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;4;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;5;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;41;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;57;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;23;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;6;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;13;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;4;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;3;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;5;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;4;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;4;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;31;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;24;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;4;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;5;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;5;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;7;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;3;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;5;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;3;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;13;;
+Liechtenstein;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;13;;
+Liechtenstein;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;6;;
+Liechtenstein;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;5;;
+Liechtenstein;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;120;;
+Liechtenstein;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;173;;
+Liechtenstein;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;86;;
+Liechtenstein;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;10;;
+Liechtenstein;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;4;;
+Liechtenstein;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;4;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;94;;
+Liechtenstein;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;99;;
+Liechtenstein;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;60;;
+Liechtenstein;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;9;;
+Liechtenstein;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;30;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;46;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;26;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;16;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;11;;
+Liechtenstein;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;23;;
+Liechtenstein;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;12;;
+Liechtenstein;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;6;;
+Liechtenstein;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;20;;
+Liechtenstein;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;9;;
+Liechtenstein;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;3;;
+Liechtenstein;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;9;;
+Liechtenstein;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;5;;
+Liechtenstein;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;22;;
+Liechtenstein;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;14;;
+Liechtenstein;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;11;;
+Liechtenstein;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;27;;
+Liechtenstein;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;19;;
+Liechtenstein;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;30;;
+Liechtenstein;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;13;;
+Liechtenstein;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;15;;
+Liechtenstein;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;14;;
+Liechtenstein;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;17;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;14;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;26;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;4;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;8;;
+Liechtenstein;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;10;;
+Liechtenstein;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;6;;
+Liechtenstein;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;11;;
+Liechtenstein;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;12;;
+Liechtenstein;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;9;;
+Liechtenstein;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;4;;
+Liechtenstein;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;4;;
+Liechtenstein;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;3;;
+Liechtenstein;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;6;;
+Liechtenstein;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;4;;
+Liechtenstein;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Liechtenstein;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;36;;
+Liechtenstein;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;16;;
+Liechtenstein;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;11;;
+Liechtenstein;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;10;;
+Liechtenstein;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;:;c;
+Liechtenstein;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Education ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Education ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Education ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Education ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Lithuania;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Education ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Education ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Education ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Education ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Lithuania;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;28312;;
+Luxembourg;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;20922;;
+Luxembourg;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;25978;;
+Luxembourg;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;34635;;
+Luxembourg;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;5991;;
+Luxembourg;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;43170;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;40;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;15;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;2;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;7;;
+Luxembourg;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;8;;
+Luxembourg;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;104;;
+Luxembourg;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;19;;
+Luxembourg;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2;;
+Luxembourg;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;4;;
+Luxembourg;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;56;;
+Luxembourg;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;28;;
+Luxembourg;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;29;;
+Luxembourg;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;215;;
+Luxembourg;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;123;;
+Luxembourg;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;14;;
+Luxembourg;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;5;;
+Luxembourg;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;49;;
+Luxembourg;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;10;;
+Luxembourg;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;3;;
+Luxembourg;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;48;;
+Luxembourg;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;335;;
+Luxembourg;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;168;;
+Luxembourg;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;16;;
+Luxembourg;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;16;;
+Luxembourg;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;75;;
+Luxembourg;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;20;;
+Luxembourg;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;80;;
+Luxembourg;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;651;;
+Luxembourg;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;112;;
+Luxembourg;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;3;;
+Luxembourg;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;39;;
+Luxembourg;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;13;;
+Luxembourg;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;82;;
+Luxembourg;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;242;;
+Luxembourg;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;49;;
+Luxembourg;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;12;;
+Luxembourg;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;47;;
+Luxembourg;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;23;;
+Luxembourg;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;22;;
+Luxembourg;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;137;;
+Luxembourg;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;45;;
+Luxembourg;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Education ;Y15-29;2011;10;;
+Luxembourg;F;POP;TOTAL;Managers;Education ;Y30-49;2011;47;;
+Luxembourg;F;POP;TOTAL;Managers;Education ;Y50-64;2011;17;;
+Luxembourg;F;POP;TOTAL;Managers;Education ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;17;;
+Luxembourg;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;122;;
+Luxembourg;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;39;;
+Luxembourg;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;3;;
+Luxembourg;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;25;;
+Luxembourg;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;14;;
+Luxembourg;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;12;;
+Luxembourg;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;75;;
+Luxembourg;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;26;;
+Luxembourg;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;20;;
+Luxembourg;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;188;;
+Luxembourg;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;78;;
+Luxembourg;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;32;;
+Luxembourg;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;280;;
+Luxembourg;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;120;;
+Luxembourg;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;8;;
+Luxembourg;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;16;;
+Luxembourg;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;3;;
+Luxembourg;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;1;;
+Luxembourg;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;55;;
+Luxembourg;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;210;;
+Luxembourg;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;37;;
+Luxembourg;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;11;;
+Luxembourg;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;14;;
+Luxembourg;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;4;;
+Luxembourg;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;10;;
+Luxembourg;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;12;;
+Luxembourg;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;51;;
+Luxembourg;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;14;;
+Luxembourg;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;77;;
+Luxembourg;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;273;;
+Luxembourg;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;89;;
+Luxembourg;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;7;;
+Luxembourg;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;15;;
+Luxembourg;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;71;;
+Luxembourg;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;13;;
+Luxembourg;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;24;;
+Luxembourg;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;28;;
+Luxembourg;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;6;;
+Luxembourg;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;100;;
+Luxembourg;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;305;;
+Luxembourg;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;44;;
+Luxembourg;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;430;;
+Luxembourg;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;1787;;
+Luxembourg;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;196;;
+Luxembourg;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;7;;
+Luxembourg;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;18;;
+Luxembourg;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;5;;
+Luxembourg;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;739;;
+Luxembourg;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;1203;;
+Luxembourg;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;168;;
+Luxembourg;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;4;;
+Luxembourg;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;33;;
+Luxembourg;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;85;;
+Luxembourg;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;10;;
+Luxembourg;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;941;;
+Luxembourg;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;2437;;
+Luxembourg;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;907;;
+Luxembourg;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;6;;
+Luxembourg;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;759;;
+Luxembourg;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;1945;;
+Luxembourg;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;577;;
+Luxembourg;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;8;;
+Luxembourg;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;547;;
+Luxembourg;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;1733;;
+Luxembourg;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;479;;
+Luxembourg;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;4;;
+Luxembourg;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;24;;
+Luxembourg;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;91;;
+Luxembourg;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;21;;
+Luxembourg;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;59;;
+Luxembourg;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;247;;
+Luxembourg;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;71;;
+Luxembourg;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2;;
+Luxembourg;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;200;;
+Luxembourg;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;2105;;
+Luxembourg;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;641;;
+Luxembourg;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;417;;
+Luxembourg;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;1270;;
+Luxembourg;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;427;;
+Luxembourg;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;21;;
+Luxembourg;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;6;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;8;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;6;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;45;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;174;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;60;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;6;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;19;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;6;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;3;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;10;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;6;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;38;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;131;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;62;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;175;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;407;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;130;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;7;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;32;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;142;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;38;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;26;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;50;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;10;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;34;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;144;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;34;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;241;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;1068;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;278;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;12;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;43;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;110;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;57;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;3;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;289;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;574;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;153;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;34;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;106;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;32;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;423;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;1195;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;354;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;80;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;114;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;40;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;1320;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;2429;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;797;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;5;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;21;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;63;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;13;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;101;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;216;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;93;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;62;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;566;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;340;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;316;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;822;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;322;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;8;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;5;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;15;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;5;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;9;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;4;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;79;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;299;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;133;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;24;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;37;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;10;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;7;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;17;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;6;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;162;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;442;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;165;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;6;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;348;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;754;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;285;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;13;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;140;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;373;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;101;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;54;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;81;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;19;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;113;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;386;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;134;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;433;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;2451;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;631;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;39;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;89;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;41;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;286;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;602;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;200;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;175;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;251;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;75;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;314;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;1155;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;438;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;35;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;111;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;32;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;210;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;664;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;250;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;27;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;83;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;28;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;47;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;178;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;77;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;3;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;42;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;446;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;344;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;247;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;712;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;269;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;9;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;3;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;2;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;3;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;100;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;291;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;73;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;5;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;20;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;57;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;28;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1180;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2140;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;760;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;25;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;92;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;196;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;32;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;664;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;1194;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;266;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;3;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;18;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;32;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;10;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;46;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;94;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;27;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;10;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;16;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;8;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;23;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;53;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;19;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;60;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;160;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;62;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;159;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;474;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;225;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;34;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;50;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;18;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;874;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;1778;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;624;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;3;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;30;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;33;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;21;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;562;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;766;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;155;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;5;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;6;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;59;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;21;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;7;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;18;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;13;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;599;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;1203;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;414;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;20;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;1;;
+Luxembourg;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;43;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;314;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;295;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;41;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;6;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;7;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;3;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;60;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;68;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;21;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;3;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;6;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;14;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;7;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;5;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;27;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;27;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;22;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;9;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;3;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;2;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;2;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;30;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;84;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;59;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;10;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;1;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;65;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;176;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;47;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;41;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;84;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;26;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;39;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;97;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;45;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;3;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;11;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;3;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;5;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;7;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;9;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;1;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;12;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;2;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;3;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;17;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;3;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;16;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;6;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;21;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;3;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;1;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;9;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;25;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;14;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;2;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;6;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;3;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;44;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;21;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;37;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;82;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;37;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;23;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;94;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;35;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;14;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;3;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;9;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;35;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;49;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;111;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;26;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;5;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;1;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;4;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;1;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;3;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;3;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;9;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;1;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;8;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;18;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;5;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;2;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;31;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;9;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;3;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;1;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;7;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;49;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;13;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;3;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;19;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;6;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;10;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;39;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;7;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;5;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;36;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;20;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;4;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;53;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;303;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;78;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;7;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;5;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;13;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;32;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;250;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;80;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;140;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;610;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;189;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;18;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;82;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;18;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;238;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;919;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;223;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;14;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;144;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;89;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;9;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;70;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;33;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;7;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;68;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;26;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;43;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;226;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;90;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;723;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;2495;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;527;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;155;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;1084;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;578;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;28;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;194;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;107;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;217;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;1375;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;519;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;9;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;45;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;12;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;37;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;189;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;74;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;53;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;563;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;230;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;4;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;2;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;11;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;11;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;366;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;2588;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;932;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;12;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;15;;
+Luxembourg;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;26;;
+Luxembourg;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;3;;
+Luxembourg;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;2;;
+Luxembourg;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;26;;
+Luxembourg;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;147;;
+Luxembourg;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;49;;
+Luxembourg;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;7;;
+Luxembourg;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;4;;
+Luxembourg;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;4;;
+Luxembourg;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;11;;
+Luxembourg;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;48;;
+Luxembourg;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;27;;
+Luxembourg;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;78;;
+Luxembourg;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;200;;
+Luxembourg;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;68;;
+Luxembourg;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;17;;
+Luxembourg;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;54;;
+Luxembourg;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;23;;
+Luxembourg;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;42;;
+Luxembourg;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;111;;
+Luxembourg;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;35;;
+Luxembourg;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;1;;
+Luxembourg;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;6;;
+Luxembourg;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;77;;
+Luxembourg;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;24;;
+Luxembourg;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;33;;
+Luxembourg;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;131;;
+Luxembourg;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;37;;
+Luxembourg;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;4;;
+Luxembourg;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;11;;
+Luxembourg;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;5;;
+Luxembourg;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;40;;
+Luxembourg;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;71;;
+Luxembourg;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;21;;
+Luxembourg;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;2;;
+Luxembourg;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;35;;
+Luxembourg;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;78;;
+Luxembourg;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;21;;
+Luxembourg;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;119;;
+Luxembourg;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;408;;
+Luxembourg;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;211;;
+Luxembourg;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;15;;
+Luxembourg;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;40;;
+Luxembourg;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;21;;
+Luxembourg;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;131;;
+Luxembourg;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;345;;
+Luxembourg;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;148;;
+Luxembourg;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;10;;
+Luxembourg;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;26;;
+Luxembourg;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;11;;
+Luxembourg;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;26;;
+Luxembourg;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;61;;
+Luxembourg;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;15;;
+Luxembourg;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Luxembourg;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;20;;
+Luxembourg;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;2;;
+Luxembourg;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;18;;
+Luxembourg;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;122;;
+Luxembourg;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;93;;
+Luxembourg;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Luxembourg;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;635;;
+Luxembourg;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;1505;;
+Luxembourg;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;593;;
+Luxembourg;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;29;;
+Luxembourg;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;1;;
+Luxembourg;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;27676;;
+Luxembourg;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;12616;;
+Luxembourg;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;19858;;
+Luxembourg;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;27596;;
+Luxembourg;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;2179;;
+Luxembourg;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;45467;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;2;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;3;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;2;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;809;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;182;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;41;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;6;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;6;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;1;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;1;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;10;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;3;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;25;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;16;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;6;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;2;;
+Luxembourg;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;14;;
+Luxembourg;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;6;;
+Luxembourg;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;4;;
+Luxembourg;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;1;;
+Luxembourg;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;22;;
+Luxembourg;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;348;;
+Luxembourg;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;200;;
+Luxembourg;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;5;;
+Luxembourg;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2;;
+Luxembourg;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;16;;
+Luxembourg;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;7;;
+Luxembourg;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;13;;
+Luxembourg;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3;;
+Luxembourg;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;10;;
+Luxembourg;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;290;;
+Luxembourg;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;186;;
+Luxembourg;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;16;;
+Luxembourg;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;1;;
+Luxembourg;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;48;;
+Luxembourg;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;628;;
+Luxembourg;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;353;;
+Luxembourg;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;34;;
+Luxembourg;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;2;;
+Luxembourg;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;22;;
+Luxembourg;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;153;;
+Luxembourg;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;99;;
+Luxembourg;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;15;;
+Luxembourg;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;62;;
+Luxembourg;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;454;;
+Luxembourg;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;256;;
+Luxembourg;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;8;;
+Luxembourg;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;17;;
+Luxembourg;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;267;;
+Luxembourg;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;79;;
+Luxembourg;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;3;;
+Luxembourg;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;109;;
+Luxembourg;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;1438;;
+Luxembourg;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;591;;
+Luxembourg;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;17;;
+Luxembourg;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;1;;
+Luxembourg;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;8;;
+Luxembourg;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;54;;
+Luxembourg;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;33;;
+Luxembourg;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;6;;
+Luxembourg;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;93;;
+Luxembourg;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;464;;
+Luxembourg;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;197;;
+Luxembourg;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;8;;
+Luxembourg;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;12;;
+Luxembourg;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;139;;
+Luxembourg;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;55;;
+Luxembourg;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;9;;
+Luxembourg;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;21;;
+Luxembourg;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;206;;
+Luxembourg;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;159;;
+Luxembourg;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;8;;
+Luxembourg;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Education ;Y15-29;2011;6;;
+Luxembourg;M;POP;TOTAL;Managers;Education ;Y30-49;2011;51;;
+Luxembourg;M;POP;TOTAL;Managers;Education ;Y50-64;2011;38;;
+Luxembourg;M;POP;TOTAL;Managers;Education ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;4;;
+Luxembourg;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;110;;
+Luxembourg;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;70;;
+Luxembourg;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;4;;
+Luxembourg;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;50;;
+Luxembourg;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;30;;
+Luxembourg;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;8;;
+Luxembourg;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;67;;
+Luxembourg;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;49;;
+Luxembourg;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Luxembourg;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;14;;
+Luxembourg;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;288;;
+Luxembourg;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;230;;
+Luxembourg;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;58;;
+Luxembourg;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;652;;
+Luxembourg;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;370;;
+Luxembourg;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;37;;
+Luxembourg;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;9;;
+Luxembourg;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;10;;
+Luxembourg;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;8;;
+Luxembourg;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;2;;
+Luxembourg;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;3;;
+Luxembourg;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;1;;
+Luxembourg;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;104;;
+Luxembourg;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;648;;
+Luxembourg;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;301;;
+Luxembourg;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;23;;
+Luxembourg;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;99;;
+Luxembourg;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;37;;
+Luxembourg;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;5;;
+Luxembourg;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;26;;
+Luxembourg;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;7;;
+Luxembourg;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;43;;
+Luxembourg;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;133;;
+Luxembourg;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;77;;
+Luxembourg;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;8;;
+Luxembourg;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;88;;
+Luxembourg;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;429;;
+Luxembourg;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;154;;
+Luxembourg;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;18;;
+Luxembourg;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;39;;
+Luxembourg;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;210;;
+Luxembourg;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;94;;
+Luxembourg;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;17;;
+Luxembourg;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;44;;
+Luxembourg;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;11;;
+Luxembourg;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;230;;
+Luxembourg;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;1018;;
+Luxembourg;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;246;;
+Luxembourg;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;4;;
+Luxembourg;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;520;;
+Luxembourg;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;2703;;
+Luxembourg;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;609;;
+Luxembourg;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;10;;
+Luxembourg;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;7;;
+Luxembourg;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;28;;
+Luxembourg;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;14;;
+Luxembourg;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;698;;
+Luxembourg;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;1885;;
+Luxembourg;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;556;;
+Luxembourg;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;67;;
+Luxembourg;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Luxembourg;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;24;;
+Luxembourg;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;93;;
+Luxembourg;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;20;;
+Luxembourg;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;328;;
+Luxembourg;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;1717;;
+Luxembourg;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;747;;
+Luxembourg;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;8;;
+Luxembourg;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;320;;
+Luxembourg;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;1231;;
+Luxembourg;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;539;;
+Luxembourg;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;8;;
+Luxembourg;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;171;;
+Luxembourg;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;830;;
+Luxembourg;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;539;;
+Luxembourg;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;43;;
+Luxembourg;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;22;;
+Luxembourg;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;94;;
+Luxembourg;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;49;;
+Luxembourg;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;28;;
+Luxembourg;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;201;;
+Luxembourg;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;71;;
+Luxembourg;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;30;;
+Luxembourg;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Luxembourg;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;71;;
+Luxembourg;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1599;;
+Luxembourg;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;829;;
+Luxembourg;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;10;;
+Luxembourg;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;272;;
+Luxembourg;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;1300;;
+Luxembourg;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;720;;
+Luxembourg;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;94;;
+Luxembourg;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;3;;
+Luxembourg;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;4;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;10;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;7;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;2;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;1;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;143;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;633;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;337;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;36;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;85;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;44;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;13;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;42;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;14;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;143;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;566;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;243;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;4;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;151;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;552;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;202;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;7;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;125;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;454;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;198;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;38;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;149;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;30;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;142;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;403;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;169;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;266;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;1248;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;457;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;19;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;34;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;170;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;84;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;7;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;192;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;442;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;180;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;4;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;29;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;114;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;35;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;445;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;1577;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;670;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;3;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;35;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;66;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;27;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;254;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;662;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;225;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;52;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;107;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;34;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;31;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;100;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;39;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;7;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;2;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;26;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;309;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;280;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;242;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;720;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;343;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;25;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;2;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;3;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;1;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;4;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;67;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;295;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;154;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;23;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;49;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;17;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;3;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;18;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;68;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;189;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;62;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;345;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;664;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;185;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;212;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;761;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;317;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;38;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;49;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;23;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;151;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;572;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;242;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;324;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;1391;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;615;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;8;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;22;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;4;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;122;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;161;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;76;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;4;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;60;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;119;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;32;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;288;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;978;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;466;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;16;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;33;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;13;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;77;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;138;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;69;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;14;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;48;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;17;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;19;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;55;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;24;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;19;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;201;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;211;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;155;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;347;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;118;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;3;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;3;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;6;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;2;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;28;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;81;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;65;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;4;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;7;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;5;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;30;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;97;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;22;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;3;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;618;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;991;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;365;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;24;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;79;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;232;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;103;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;546;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;1202;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;297;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;38;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;57;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;10;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;24;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;79;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;57;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;17;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;8;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;18;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;57;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;18;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;181;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;351;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;83;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;405;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;896;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;232;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;50;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;131;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;33;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;215;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;334;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;106;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;19;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;51;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;17;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;72;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;148;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;60;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;3;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;1;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;5;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;31;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;35;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;279;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;583;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;269;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;21;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;1;;
+Luxembourg;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;228;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;739;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;597;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;113;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;2;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;5;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;18;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;22;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;5;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;4;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;3;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;9;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;15;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;10;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;3;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;16;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;74;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;32;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;1;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;2;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;7;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;5;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;3;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;5;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;1;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;3;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;8;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;9;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;51;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;105;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;18;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;110;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;262;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;83;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;9;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;53;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;88;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;33;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;5;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;6;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;2;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;2;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;10;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;3;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;88;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;147;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;89;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;20;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;2;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;12;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;7;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;10;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;19;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;9;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;524;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;1377;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;690;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;5;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;56;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;146;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;42;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;15;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;66;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;17;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;1811;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;5703;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;1681;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;11;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;719;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1095;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;388;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;14;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;203;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;400;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;193;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;9;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;35;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;11;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;18;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;69;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;67;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;20;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;114;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;49;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;16;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;63;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;25;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;36;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;129;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;47;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;79;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;302;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;77;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;135;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;590;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;241;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;9;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;51;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;13;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;56;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;152;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;72;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;18;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;5;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;12;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;52;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;16;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;5;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;13;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;22;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;581;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;1567;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;503;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;12;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;6;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;2;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;5;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;18;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;6;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;387;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;1329;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;570;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;4;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;6;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;7;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;48;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;14;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;87;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;615;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;201;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;108;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;443;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;115;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;452;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;1662;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;541;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;3;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;13;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;36;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;8;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;2;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;19;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;6;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;4;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;42;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;20;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;5;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;2;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;9;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;33;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;15;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;109;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;333;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;55;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;5;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;48;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;455;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;185;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;2;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;19;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;66;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;49;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;3;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;4;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;4;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;19;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;8;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;4;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;52;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;30;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;113;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;452;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;172;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;11;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;50;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;16;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;4;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;10;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;5;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;97;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;279;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;129;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;6;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;4;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;19;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;78;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;17;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;352;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;944;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;270;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;162;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;296;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;73;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;61;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;207;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;45;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;165;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;274;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;69;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;18;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;34;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;11;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;7;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;34;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;10;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;9;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;20;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;5;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;26;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;56;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;20;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;202;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;371;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;103;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;284;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;1192;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;425;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;12;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;33;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;5;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;202;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;328;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;128;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;11;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;13;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;5;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;13;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;17;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;11;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;4;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;15;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;5;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;6;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;202;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;532;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;181;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;10;;
+Luxembourg;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;29;;
+Luxembourg;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;29;;
+Luxembourg;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;8;;
+Luxembourg;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;4;;
+Luxembourg;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;2;;
+Luxembourg;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;110;;
+Luxembourg;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;394;;
+Luxembourg;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;173;;
+Luxembourg;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;13;;
+Luxembourg;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;25;;
+Luxembourg;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;15;;
+Luxembourg;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;7;;
+Luxembourg;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;24;;
+Luxembourg;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;11;;
+Luxembourg;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;137;;
+Luxembourg;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;388;;
+Luxembourg;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;109;;
+Luxembourg;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;8;;
+Luxembourg;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;128;;
+Luxembourg;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;289;;
+Luxembourg;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;113;;
+Luxembourg;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;10;;
+Luxembourg;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;101;;
+Luxembourg;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;334;;
+Luxembourg;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;137;;
+Luxembourg;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;42;;
+Luxembourg;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;114;;
+Luxembourg;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;33;;
+Luxembourg;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;33;;
+Luxembourg;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;110;;
+Luxembourg;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;50;;
+Luxembourg;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;27;;
+Luxembourg;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;165;;
+Luxembourg;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;60;;
+Luxembourg;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;6;;
+Luxembourg;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;17;;
+Luxembourg;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;6;;
+Luxembourg;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;2;;
+Luxembourg;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;42;;
+Luxembourg;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;105;;
+Luxembourg;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;39;;
+Luxembourg;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;58;;
+Luxembourg;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;155;;
+Luxembourg;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;36;;
+Luxembourg;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;1;;
+Luxembourg;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;185;;
+Luxembourg;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;796;;
+Luxembourg;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;347;;
+Luxembourg;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;21;;
+Luxembourg;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;36;;
+Luxembourg;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;14;;
+Luxembourg;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;149;;
+Luxembourg;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;279;;
+Luxembourg;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;95;;
+Luxembourg;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;3;;
+Luxembourg;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;9;;
+Luxembourg;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;29;;
+Luxembourg;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;11;;
+Luxembourg;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Luxembourg;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;6;;
+Luxembourg;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;26;;
+Luxembourg;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;11;;
+Luxembourg;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;3;;
+Luxembourg;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Luxembourg;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;4;;
+Luxembourg;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;7;;
+Luxembourg;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;103;;
+Luxembourg;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;137;;
+Luxembourg;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;993;;
+Luxembourg;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;1971;;
+Luxembourg;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;766;;
+Luxembourg;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;37;;
+Luxembourg;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Luxembourg;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;106865;;
+Latvia;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;47278;;
+Latvia;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;80989;;
+Latvia;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;216518;;
+Latvia;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;27215;;
+Latvia;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;143644;;
+Latvia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;1;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;1;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;1;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;121;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;265;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;10;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;26;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;45;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;2;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;1;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;1;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;103;;
+Latvia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;888;;
+Latvia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;799;;
+Latvia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;81;;
+Latvia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;13;;
+Latvia;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;34;;
+Latvia;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;20;;
+Latvia;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;481;;
+Latvia;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;2284;;
+Latvia;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;1343;;
+Latvia;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;76;;
+Latvia;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;13;;
+Latvia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;131;;
+Latvia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;106;;
+Latvia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;;
+Latvia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;26;;
+Latvia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;129;;
+Latvia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;87;;
+Latvia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;;
+Latvia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;177;;
+Latvia;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;670;;
+Latvia;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;335;;
+Latvia;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;21;;
+Latvia;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1775;;
+Latvia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;7330;;
+Latvia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3312;;
+Latvia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;207;;
+Latvia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;365;;
+Latvia;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;1568;;
+Latvia;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;889;;
+Latvia;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;54;;
+Latvia;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;643;;
+Latvia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;1254;;
+Latvia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;553;;
+Latvia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;41;;
+Latvia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;344;;
+Latvia;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;727;;
+Latvia;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;225;;
+Latvia;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;14;;
+Latvia;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;731;;
+Latvia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;1720;;
+Latvia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;443;;
+Latvia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;17;;
+Latvia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;135;;
+Latvia;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;610;;
+Latvia;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;427;;
+Latvia;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;64;;
+Latvia;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;517;;
+Latvia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;1602;;
+Latvia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;564;;
+Latvia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;41;;
+Latvia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;306;;
+Latvia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;736;;
+Latvia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;275;;
+Latvia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;20;;
+Latvia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;466;;
+Latvia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;2566;;
+Latvia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;1309;;
+Latvia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;84;;
+Latvia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Education ;Y15-29;2011;281;;
+Latvia;F;POP;TOTAL;Managers;Education ;Y30-49;2011;1987;;
+Latvia;F;POP;TOTAL;Managers;Education ;Y50-64;2011;1650;;
+Latvia;F;POP;TOTAL;Managers;Education ;Y65-84;2011;202;;
+Latvia;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;1;;
+Latvia;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;163;;
+Latvia;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;889;;
+Latvia;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;624;;
+Latvia;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;93;;
+Latvia;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;345;;
+Latvia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;1085;;
+Latvia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;672;;
+Latvia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;60;;
+Latvia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;442;;
+Latvia;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;968;;
+Latvia;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;410;;
+Latvia;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;48;;
+Latvia;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;4;;
+Latvia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;4;;
+Latvia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;6;;
+Latvia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;8;;
+Latvia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;23;;
+Latvia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;8;;
+Latvia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;121;;
+Latvia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;602;;
+Latvia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;497;;
+Latvia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;54;;
+Latvia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;14;;
+Latvia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;26;;
+Latvia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;29;;
+Latvia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;1;;
+Latvia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;841;;
+Latvia;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;2709;;
+Latvia;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;2001;;
+Latvia;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;130;;
+Latvia;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;1;;
+Latvia;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;74;;
+Latvia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;421;;
+Latvia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;323;;
+Latvia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;20;;
+Latvia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;55;;
+Latvia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;170;;
+Latvia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;115;;
+Latvia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;7;;
+Latvia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;383;;
+Latvia;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;1016;;
+Latvia;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;723;;
+Latvia;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;47;;
+Latvia;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1421;;
+Latvia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4063;;
+Latvia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2203;;
+Latvia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;246;;
+Latvia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;431;;
+Latvia;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;1268;;
+Latvia;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;911;;
+Latvia;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;49;;
+Latvia;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;142;;
+Latvia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;331;;
+Latvia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;229;;
+Latvia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;13;;
+Latvia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;1275;;
+Latvia;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;2059;;
+Latvia;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;787;;
+Latvia;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;64;;
+Latvia;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;1074;;
+Latvia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;1626;;
+Latvia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;402;;
+Latvia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;17;;
+Latvia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;222;;
+Latvia;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;737;;
+Latvia;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;539;;
+Latvia;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;86;;
+Latvia;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;2787;;
+Latvia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;4435;;
+Latvia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;1949;;
+Latvia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;306;;
+Latvia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;348;;
+Latvia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;604;;
+Latvia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;234;;
+Latvia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;14;;
+Latvia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;2775;;
+Latvia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;6706;;
+Latvia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;3084;;
+Latvia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;277;;
+Latvia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;2;;
+Latvia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;4264;;
+Latvia;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;21986;;
+Latvia;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;13151;;
+Latvia;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;1487;;
+Latvia;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;1447;;
+Latvia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;6476;;
+Latvia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;4744;;
+Latvia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;1123;;
+Latvia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;3;;
+Latvia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;765;;
+Latvia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;1869;;
+Latvia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;1236;;
+Latvia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;172;;
+Latvia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;2;;
+Latvia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;327;;
+Latvia;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;735;;
+Latvia;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;341;;
+Latvia;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;72;;
+Latvia;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Latvia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2;;
+Latvia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;2;;
+Latvia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;13;;
+Latvia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;89;;
+Latvia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;20;;
+Latvia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;160;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;522;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;341;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;41;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;11;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;47;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;28;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;2;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;1043;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;2560;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;1413;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;70;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;76;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;327;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;307;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;14;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;62;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;129;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;168;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;19;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;460;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;693;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;338;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;28;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2983;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;5553;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1914;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;165;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;797;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;1367;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;600;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;36;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;335;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;572;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;281;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;23;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;752;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;730;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;296;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;12;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;2426;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;2777;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;766;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;55;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;352;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;666;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;386;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;55;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;1533;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;1952;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;751;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;52;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;492;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;544;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;171;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;17;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;2881;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;5918;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;2625;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;174;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;588;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;1223;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;942;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;189;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;1754;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;7785;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;5254;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;652;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;554;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;978;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;567;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;103;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;412;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;786;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;297;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;51;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;3;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;4;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;14;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;33;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;7;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;78;;
+Latvia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;232;;
+Latvia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;231;;
+Latvia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;22;;
+Latvia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;12;;
+Latvia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;27;;
+Latvia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;28;;
+Latvia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;617;;
+Latvia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;1525;;
+Latvia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;1189;;
+Latvia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;71;;
+Latvia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;102;;
+Latvia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;267;;
+Latvia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;223;;
+Latvia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;13;;
+Latvia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;48;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;132;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;104;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;11;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;279;;
+Latvia;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;437;;
+Latvia;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;316;;
+Latvia;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;16;;
+Latvia;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2292;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;3723;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1735;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;86;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;1292;;
+Latvia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;3859;;
+Latvia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;3010;;
+Latvia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;162;;
+Latvia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;1;;
+Latvia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;666;;
+Latvia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;395;;
+Latvia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;170;;
+Latvia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;12;;
+Latvia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;643;;
+Latvia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;507;;
+Latvia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;200;;
+Latvia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;11;;
+Latvia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;1500;;
+Latvia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;1397;;
+Latvia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;453;;
+Latvia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;22;;
+Latvia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;178;;
+Latvia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;282;;
+Latvia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;269;;
+Latvia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;25;;
+Latvia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;505;;
+Latvia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;583;;
+Latvia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;257;;
+Latvia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;32;;
+Latvia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;1173;;
+Latvia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;869;;
+Latvia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;255;;
+Latvia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;17;;
+Latvia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;503;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;1217;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;940;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;125;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;391;;
+Latvia;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;513;;
+Latvia;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;459;;
+Latvia;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;77;;
+Latvia;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;230;;
+Latvia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;481;;
+Latvia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;442;;
+Latvia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;64;;
+Latvia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;910;;
+Latvia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;793;;
+Latvia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;212;;
+Latvia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;42;;
+Latvia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;181;;
+Latvia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;295;;
+Latvia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;175;;
+Latvia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;42;;
+Latvia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;2;;
+Latvia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;9;;
+Latvia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;18;;
+Latvia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;6;;
+Latvia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;73;;
+Latvia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;371;;
+Latvia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;290;;
+Latvia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;13;;
+Latvia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;6;;
+Latvia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;21;;
+Latvia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;25;;
+Latvia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;2;;
+Latvia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;387;;
+Latvia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;1041;;
+Latvia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;707;;
+Latvia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;67;;
+Latvia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2;;
+Latvia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;36;;
+Latvia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;36;;
+Latvia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;3;;
+Latvia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;10;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;21;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;40;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;6;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;67;;
+Latvia;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;144;;
+Latvia;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;140;;
+Latvia;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;21;;
+Latvia;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;16676;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;28750;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;13242;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;720;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;701;;
+Latvia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;1097;;
+Latvia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;967;;
+Latvia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;65;;
+Latvia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;6143;;
+Latvia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;6035;;
+Latvia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;2615;;
+Latvia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;99;;
+Latvia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;124;;
+Latvia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;95;;
+Latvia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;48;;
+Latvia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;7;;
+Latvia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;56;;
+Latvia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;89;;
+Latvia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;40;;
+Latvia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;4;;
+Latvia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;70;;
+Latvia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;302;;
+Latvia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;352;;
+Latvia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;75;;
+Latvia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;101;;
+Latvia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;140;;
+Latvia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;85;;
+Latvia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;16;;
+Latvia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;442;;
+Latvia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;875;;
+Latvia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;537;;
+Latvia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;46;;
+Latvia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;290;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;764;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;319;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;63;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;1055;;
+Latvia;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;3795;;
+Latvia;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;3429;;
+Latvia;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;441;;
+Latvia;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;842;;
+Latvia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;3697;;
+Latvia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;3826;;
+Latvia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;356;;
+Latvia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;718;;
+Latvia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;822;;
+Latvia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;309;;
+Latvia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;99;;
+Latvia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;1934;;
+Latvia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;4947;;
+Latvia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;1056;;
+Latvia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;88;;
+Latvia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;165;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;116;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;68;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;6;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Latvia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;4;;
+Latvia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;8;;
+Latvia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Latvia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;372;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;2210;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;1939;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;98;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;16;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;92;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;45;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;4;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;4;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;5;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;5;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;7;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;6;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;18;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;6;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;3;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;7;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;10;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;11;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;7;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;3;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;7;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;7;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;25;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;120;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;79;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;4;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;2;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;8;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;6;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;6;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;71;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;57;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;11;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;11;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;22;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;3;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;4;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;15;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;22;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;2;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;4;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;4;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;38;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;77;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;61;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;3;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;3;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;5;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;4;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;3221;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;12828;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;7196;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;260;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;1;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;7;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;50;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;79;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;7;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;6;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;28;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;41;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;8;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;130;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;605;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;530;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;23;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;459;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1188;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;468;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;12;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;44;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;216;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;254;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;15;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;210;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;521;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;256;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;8;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;43;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;89;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;62;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;5;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;2;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;8;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;3;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;1;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;16;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;78;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;64;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;7;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;87;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;89;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;63;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;13;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;31;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;77;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;68;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;5;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;4;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;28;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;39;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;2;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;108;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;412;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;476;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;64;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;15;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;135;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;169;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;31;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;21;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;114;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;82;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;11;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;63;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;305;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;206;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;13;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;3;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;6;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;5;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;3;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;37;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;126;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;74;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;5;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;16;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;30;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;30;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;1;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;1282;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;4526;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;2995;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;77;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;4;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;38;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;87;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;5;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;20;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;65;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;68;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;9;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;14;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;37;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;74;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;7;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;97;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;245;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;150;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;9;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;173;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;918;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;652;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;29;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;8;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;23;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;11;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;21;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;16;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;4;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;1;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;4;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;1;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;2;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;9;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;35;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;36;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;7;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;18;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;26;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;19;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;34;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;98;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;63;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;1;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;17;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;105;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;92;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;16;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;87;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;87;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;12;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;9;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;63;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;95;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;12;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;10;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;19;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;11;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;31;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;73;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;45;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;2;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;814;;
+Latvia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;2401;;
+Latvia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;1610;;
+Latvia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;46;;
+Latvia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;80;;
+Latvia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;196;;
+Latvia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;100;;
+Latvia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;4;;
+Latvia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;1269;;
+Latvia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;3250;;
+Latvia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;2787;;
+Latvia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;113;;
+Latvia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;32;;
+Latvia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;167;;
+Latvia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;241;;
+Latvia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;41;;
+Latvia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;231;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;836;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;861;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;72;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;109;;
+Latvia;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;342;;
+Latvia;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;399;;
+Latvia;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;57;;
+Latvia;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1124;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2081;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2217;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;185;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;302;;
+Latvia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;930;;
+Latvia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;1038;;
+Latvia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;83;;
+Latvia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;1035;;
+Latvia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;2093;;
+Latvia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;1681;;
+Latvia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;80;;
+Latvia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;56;;
+Latvia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;77;;
+Latvia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;129;;
+Latvia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;15;;
+Latvia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;27;;
+Latvia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;93;;
+Latvia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;151;;
+Latvia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;15;;
+Latvia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;1;;
+Latvia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;360;;
+Latvia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;1998;;
+Latvia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;3006;;
+Latvia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;527;;
+Latvia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;1;;
+Latvia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;69;;
+Latvia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;178;;
+Latvia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;202;;
+Latvia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;33;;
+Latvia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;817;;
+Latvia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;2880;;
+Latvia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;2438;;
+Latvia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;137;;
+Latvia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;283;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;1190;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;1295;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;261;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;675;;
+Latvia;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;3300;;
+Latvia;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;4067;;
+Latvia;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;676;;
+Latvia;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;1;;
+Latvia;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;431;;
+Latvia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;1298;;
+Latvia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;1658;;
+Latvia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;246;;
+Latvia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;236;;
+Latvia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;634;;
+Latvia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;718;;
+Latvia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;154;;
+Latvia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;200;;
+Latvia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;421;;
+Latvia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;411;;
+Latvia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;68;;
+Latvia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;33;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;71;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;39;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;6;;
+Latvia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;13;;
+Latvia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;12;;
+Latvia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Latvia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Latvia;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;101330;;
+Latvia;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;44131;;
+Latvia;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;61267;;
+Latvia;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;104490;;
+Latvia;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;6088;;
+Latvia;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;150506;;
+Latvia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;1;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;2;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;1;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;1;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;2;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;1;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;1;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;2;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;3;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;1;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;1257;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;1605;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;56;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;213;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;147;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;5;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;1;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;1;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;393;;
+Latvia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;2702;;
+Latvia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;1480;;
+Latvia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;129;;
+Latvia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;37;;
+Latvia;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;109;;
+Latvia;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;85;;
+Latvia;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;6;;
+Latvia;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;857;;
+Latvia;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;4524;;
+Latvia;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;2224;;
+Latvia;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;201;;
+Latvia;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;67;;
+Latvia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;449;;
+Latvia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;314;;
+Latvia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;36;;
+Latvia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;47;;
+Latvia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;264;;
+Latvia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;167;;
+Latvia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;21;;
+Latvia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;1305;;
+Latvia;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;4289;;
+Latvia;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;1940;;
+Latvia;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;178;;
+Latvia;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1984;;
+Latvia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;9063;;
+Latvia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;3070;;
+Latvia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;150;;
+Latvia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;638;;
+Latvia;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;2801;;
+Latvia;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;1322;;
+Latvia;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;119;;
+Latvia;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;2;;
+Latvia;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;271;;
+Latvia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;725;;
+Latvia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;299;;
+Latvia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;20;;
+Latvia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;516;;
+Latvia;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;1243;;
+Latvia;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;294;;
+Latvia;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;22;;
+Latvia;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;383;;
+Latvia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;1084;;
+Latvia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;225;;
+Latvia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;10;;
+Latvia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;190;;
+Latvia;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;985;;
+Latvia;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;495;;
+Latvia;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;69;;
+Latvia;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;505;;
+Latvia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;1699;;
+Latvia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;559;;
+Latvia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;73;;
+Latvia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;331;;
+Latvia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;1000;;
+Latvia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;377;;
+Latvia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;34;;
+Latvia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;321;;
+Latvia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;1647;;
+Latvia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;738;;
+Latvia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;134;;
+Latvia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Education ;Y15-29;2011;105;;
+Latvia;M;POP;TOTAL;Managers;Education ;Y30-49;2011;511;;
+Latvia;M;POP;TOTAL;Managers;Education ;Y50-64;2011;497;;
+Latvia;M;POP;TOTAL;Managers;Education ;Y65-84;2011;105;;
+Latvia;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;42;;
+Latvia;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;226;;
+Latvia;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;197;;
+Latvia;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;33;;
+Latvia;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;189;;
+Latvia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;499;;
+Latvia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;252;;
+Latvia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;38;;
+Latvia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;169;;
+Latvia;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;605;;
+Latvia;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;319;;
+Latvia;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;79;;
+Latvia;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;2;;
+Latvia;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2;;
+Latvia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;8;;
+Latvia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;2;;
+Latvia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Latvia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;11;;
+Latvia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;6;;
+Latvia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Latvia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;111;;
+Latvia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;492;;
+Latvia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;380;;
+Latvia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;32;;
+Latvia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;8;;
+Latvia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;34;;
+Latvia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;18;;
+Latvia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;3;;
+Latvia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;928;;
+Latvia;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;1813;;
+Latvia;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;1262;;
+Latvia;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;177;;
+Latvia;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;194;;
+Latvia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;629;;
+Latvia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;443;;
+Latvia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;56;;
+Latvia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;44;;
+Latvia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;112;;
+Latvia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;90;;
+Latvia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;27;;
+Latvia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;730;;
+Latvia;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;1518;;
+Latvia;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;805;;
+Latvia;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;109;;
+Latvia;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;888;;
+Latvia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1882;;
+Latvia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;572;;
+Latvia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;73;;
+Latvia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;326;;
+Latvia;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;761;;
+Latvia;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;508;;
+Latvia;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;84;;
+Latvia;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;63;;
+Latvia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;95;;
+Latvia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;55;;
+Latvia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;7;;
+Latvia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;2710;;
+Latvia;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;2693;;
+Latvia;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;626;;
+Latvia;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;72;;
+Latvia;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;725;;
+Latvia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;928;;
+Latvia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;190;;
+Latvia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;13;;
+Latvia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;151;;
+Latvia;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;459;;
+Latvia;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;300;;
+Latvia;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;74;;
+Latvia;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;1745;;
+Latvia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;2678;;
+Latvia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;1117;;
+Latvia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;418;;
+Latvia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;252;;
+Latvia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;369;;
+Latvia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;164;;
+Latvia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;22;;
+Latvia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;994;;
+Latvia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;2018;;
+Latvia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;873;;
+Latvia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;141;;
+Latvia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;1125;;
+Latvia;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;2643;;
+Latvia;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;2232;;
+Latvia;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;924;;
+Latvia;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;4;;
+Latvia;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;301;;
+Latvia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;1108;;
+Latvia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;868;;
+Latvia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;298;;
+Latvia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;514;;
+Latvia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;953;;
+Latvia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;441;;
+Latvia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;81;;
+Latvia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;162;;
+Latvia;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;495;;
+Latvia;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;230;;
+Latvia;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;41;;
+Latvia;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;3;;
+Latvia;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Latvia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;4;;
+Latvia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Latvia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;10;;
+Latvia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;22;;
+Latvia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;10;;
+Latvia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Latvia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;199;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;663;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;306;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;24;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;16;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;38;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;24;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;4;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;1200;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;2433;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;1082;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;130;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;158;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;462;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;376;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;38;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;95;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;225;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;269;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;41;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;847;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;1439;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;650;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;64;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2855;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4973;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1159;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;99;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;1643;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;3392;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;1871;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;162;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;270;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;274;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;80;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;5;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;1143;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;970;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;294;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;28;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;896;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;884;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;198;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;16;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;296;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;475;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;220;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;66;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;1023;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;1192;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;398;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;67;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;355;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;370;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;146;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;18;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;2377;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;5286;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;792;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;75;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;304;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;295;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;189;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;76;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;200;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;344;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;238;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;63;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;904;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;807;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;305;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;61;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;279;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;389;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;154;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;15;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;5;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;5;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;8;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;47;;
+Latvia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;106;;
+Latvia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;60;;
+Latvia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;9;;
+Latvia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;8;;
+Latvia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;7;;
+Latvia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;7;;
+Latvia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;1;;
+Latvia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;454;;
+Latvia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;606;;
+Latvia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;235;;
+Latvia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;26;;
+Latvia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;15;;
+Latvia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;30;;
+Latvia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;29;;
+Latvia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Latvia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;13;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;36;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;30;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;127;;
+Latvia;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;173;;
+Latvia;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;66;;
+Latvia;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;10;;
+Latvia;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1509;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1627;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;504;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;23;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;934;;
+Latvia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;1104;;
+Latvia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;554;;
+Latvia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;48;;
+Latvia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;226;;
+Latvia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;72;;
+Latvia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;29;;
+Latvia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;2;;
+Latvia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;280;;
+Latvia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;118;;
+Latvia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;33;;
+Latvia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;8;;
+Latvia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;308;;
+Latvia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;236;;
+Latvia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;46;;
+Latvia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;2;;
+Latvia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;28;;
+Latvia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;52;;
+Latvia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;48;;
+Latvia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;18;;
+Latvia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;125;;
+Latvia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;99;;
+Latvia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;31;;
+Latvia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;9;;
+Latvia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;306;;
+Latvia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;258;;
+Latvia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;58;;
+Latvia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;5;;
+Latvia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;70;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;140;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;84;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;13;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;33;;
+Latvia;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;22;;
+Latvia;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;31;;
+Latvia;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;6;;
+Latvia;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;35;;
+Latvia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;28;;
+Latvia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;28;;
+Latvia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;5;;
+Latvia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;281;;
+Latvia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;248;;
+Latvia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;45;;
+Latvia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;5;;
+Latvia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;41;;
+Latvia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;45;;
+Latvia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;18;;
+Latvia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;3;;
+Latvia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;3;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Latvia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;2;;
+Latvia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;2;;
+Latvia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;112;;
+Latvia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;358;;
+Latvia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;271;;
+Latvia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;44;;
+Latvia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;8;;
+Latvia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;37;;
+Latvia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;31;;
+Latvia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;3;;
+Latvia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;259;;
+Latvia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;564;;
+Latvia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;538;;
+Latvia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;116;;
+Latvia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;12;;
+Latvia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;53;;
+Latvia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;38;;
+Latvia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;6;;
+Latvia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;22;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;72;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;56;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;7;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;133;;
+Latvia;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;269;;
+Latvia;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;273;;
+Latvia;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;68;;
+Latvia;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;5055;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4792;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1631;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;135;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;553;;
+Latvia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;930;;
+Latvia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;617;;
+Latvia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;240;;
+Latvia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;3027;;
+Latvia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;1409;;
+Latvia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;255;;
+Latvia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;14;;
+Latvia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;73;;
+Latvia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;73;;
+Latvia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;37;;
+Latvia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;12;;
+Latvia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;105;;
+Latvia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;263;;
+Latvia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;71;;
+Latvia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;4;;
+Latvia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;186;;
+Latvia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;451;;
+Latvia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;493;;
+Latvia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;120;;
+Latvia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;59;;
+Latvia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;93;;
+Latvia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;75;;
+Latvia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;23;;
+Latvia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;2478;;
+Latvia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;4209;;
+Latvia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;2135;;
+Latvia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;228;;
+Latvia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1651;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;3872;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;570;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;170;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;319;;
+Latvia;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;773;;
+Latvia;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;794;;
+Latvia;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;222;;
+Latvia;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;285;;
+Latvia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;506;;
+Latvia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;396;;
+Latvia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;70;;
+Latvia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;213;;
+Latvia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;250;;
+Latvia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;128;;
+Latvia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;43;;
+Latvia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;189;;
+Latvia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;341;;
+Latvia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;142;;
+Latvia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;27;;
+Latvia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;7;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;10;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;2;;
+Latvia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;14;;
+Latvia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;5;;
+Latvia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Latvia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;984;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;3001;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;1836;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;120;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;2;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;30;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;79;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;39;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;1;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;5;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;7;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;1;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;7;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;20;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;9;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;11;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;22;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;4;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;1;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;2;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;5;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;6;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;2;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;7;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;7;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;2;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;1;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;3;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;34;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;56;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;16;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;1;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;2;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;1;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;2;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;4;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;4;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;8;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;5;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;4;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;8;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;4;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;8;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;14;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;5;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;2;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;3;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;3;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;2;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;327;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;934;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;749;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;49;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;59;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;119;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;93;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;2;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;10005;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;19361;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;10365;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;755;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;469;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1614;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1497;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;146;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;158;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;571;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;490;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;100;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;9929;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;19875;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;8073;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;305;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3588;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;5619;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2046;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;133;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;1020;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;2742;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;2359;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;296;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;145;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;144;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;80;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;11;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;197;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;288;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;145;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;11;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;15;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;37;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;22;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;4;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;357;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;1069;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;1104;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;196;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;262;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;345;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;209;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;49;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;435;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;765;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;391;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;38;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;110;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;385;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;321;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;66;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;210;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;483;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;565;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;155;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;94;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;374;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;374;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;90;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;127;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;243;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;189;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;36;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;165;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;654;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;417;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;50;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;6;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;11;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;5;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;3;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;1381;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;4835;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;2713;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;87;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;224;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;699;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;367;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;19;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;4220;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;9245;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;4787;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;254;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;127;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;660;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;801;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;67;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;119;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;733;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;642;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;59;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;916;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;3444;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;2651;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;145;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;920;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;3333;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1990;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;128;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;3498;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;17093;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;10734;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;540;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;86;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;140;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;102;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;6;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;82;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;168;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;108;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;8;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;12;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;50;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;44;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;2;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;94;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;434;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;427;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;58;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;93;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;234;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;152;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;12;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;286;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;1007;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;666;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;32;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;299;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;1185;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;1031;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;131;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;122;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;598;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;632;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;75;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;135;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;723;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;773;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;124;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;55;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;131;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;114;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;9;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;84;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;217;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;142;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;10;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;11;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;18;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;2992;;
+Latvia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;5173;;
+Latvia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;2160;;
+Latvia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;53;;
+Latvia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;265;;
+Latvia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;294;;
+Latvia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;123;;
+Latvia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;3;;
+Latvia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;3145;;
+Latvia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;3487;;
+Latvia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;1691;;
+Latvia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;94;;
+Latvia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;80;;
+Latvia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;147;;
+Latvia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;153;;
+Latvia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;8;;
+Latvia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;373;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;776;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;628;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;35;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;2390;;
+Latvia;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;2633;;
+Latvia;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;970;;
+Latvia;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;52;;
+Latvia;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2791;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2599;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1152;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;91;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;1223;;
+Latvia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;1319;;
+Latvia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;664;;
+Latvia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;63;;
+Latvia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;621;;
+Latvia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;340;;
+Latvia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;145;;
+Latvia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;12;;
+Latvia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;44;;
+Latvia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;48;;
+Latvia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;25;;
+Latvia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;5;;
+Latvia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;30;;
+Latvia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;27;;
+Latvia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;20;;
+Latvia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;4;;
+Latvia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;449;;
+Latvia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;1107;;
+Latvia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;1091;;
+Latvia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;227;;
+Latvia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;147;;
+Latvia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;146;;
+Latvia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;90;;
+Latvia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;21;;
+Latvia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;975;;
+Latvia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;2150;;
+Latvia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;1694;;
+Latvia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;48;;
+Latvia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;166;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;331;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;266;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;35;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;342;;
+Latvia;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;725;;
+Latvia;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;802;;
+Latvia;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;191;;
+Latvia;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;199;;
+Latvia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;353;;
+Latvia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;313;;
+Latvia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;52;;
+Latvia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;212;;
+Latvia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;220;;
+Latvia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;154;;
+Latvia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;44;;
+Latvia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;185;;
+Latvia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;298;;
+Latvia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;166;;
+Latvia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;17;;
+Latvia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;21;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;25;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;19;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;2;;
+Latvia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;7;;
+Latvia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Latvia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Latvia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Latvia;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;17951;;
+Malta;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;22014;;
+Malta;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;33958;;
+Malta;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;33683;;
+Malta;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;4278;;
+Malta;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;30055;;
+Malta;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;3;;
+Malta;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;1;;
+Malta;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;26;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;35;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;7;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;2;;
+Malta;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;1;;
+Malta;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;3;;
+Malta;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;3;;
+Malta;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;40;;
+Malta;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;157;;
+Malta;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;51;;
+Malta;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3;;
+Malta;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2;;
+Malta;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;4;;
+Malta;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;7;;
+Malta;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2;;
+Malta;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;8;;
+Malta;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;37;;
+Malta;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;9;;
+Malta;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;259;;
+Malta;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;655;;
+Malta;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;284;;
+Malta;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;15;;
+Malta;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;17;;
+Malta;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;83;;
+Malta;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;22;;
+Malta;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;115;;
+Malta;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;293;;
+Malta;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;85;;
+Malta;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;10;;
+Malta;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;65;;
+Malta;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;160;;
+Malta;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;18;;
+Malta;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;82;;
+Malta;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;440;;
+Malta;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;76;;
+Malta;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;2;;
+Malta;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;23;;
+Malta;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;9;;
+Malta;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;62;;
+Malta;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;218;;
+Malta;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;53;;
+Malta;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;4;;
+Malta;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;44;;
+Malta;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;178;;
+Malta;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;53;;
+Malta;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;76;;
+Malta;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;214;;
+Malta;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;55;;
+Malta;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;4;;
+Malta;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Education ;Y15-29;2011;25;;
+Malta;F;POP;TOTAL;Managers;Education ;Y30-49;2011;308;;
+Malta;F;POP;TOTAL;Managers;Education ;Y50-64;2011;196;;
+Malta;F;POP;TOTAL;Managers;Education ;Y65-84;2011;14;;
+Malta;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;19;;
+Malta;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;99;;
+Malta;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;56;;
+Malta;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;5;;
+Malta;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;46;;
+Malta;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;115;;
+Malta;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;12;;
+Malta;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;20;;
+Malta;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;26;;
+Malta;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;16;;
+Malta;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Malta;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;21;;
+Malta;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;6;;
+Malta;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;4;;
+Malta;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;4;;
+Malta;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;2;;
+Malta;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;2;;
+Malta;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;1;;
+Malta;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;185;;
+Malta;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;126;;
+Malta;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;9;;
+Malta;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;18;;
+Malta;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;13;;
+Malta;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3;;
+Malta;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;14;;
+Malta;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;10;;
+Malta;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3;;
+Malta;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;24;;
+Malta;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;21;;
+Malta;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;204;;
+Malta;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;281;;
+Malta;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;61;;
+Malta;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;7;;
+Malta;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;34;;
+Malta;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;55;;
+Malta;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;6;;
+Malta;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;44;;
+Malta;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;38;;
+Malta;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;5;;
+Malta;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;290;;
+Malta;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;205;;
+Malta;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;21;;
+Malta;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;9;;
+Malta;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;188;;
+Malta;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;201;;
+Malta;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;16;;
+Malta;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;8;;
+Malta;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;11;;
+Malta;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;3;;
+Malta;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;822;;
+Malta;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;610;;
+Malta;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;65;;
+Malta;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;7;;
+Malta;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;87;;
+Malta;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;94;;
+Malta;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;19;;
+Malta;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;314;;
+Malta;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;600;;
+Malta;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;111;;
+Malta;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;5;;
+Malta;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;1756;;
+Malta;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;3153;;
+Malta;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;1166;;
+Malta;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;79;;
+Malta;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;1;;
+Malta;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;1027;;
+Malta;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;1181;;
+Malta;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;252;;
+Malta;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;8;;
+Malta;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;108;;
+Malta;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;148;;
+Malta;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;28;;
+Malta;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;5;;
+Malta;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;35;;
+Malta;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;57;;
+Malta;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;20;;
+Malta;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Malta;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;19;;
+Malta;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;25;;
+Malta;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;5;;
+Malta;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;1;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;5;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;2;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;215;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;248;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;57;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;45;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;8;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;26;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;21;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;36;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;9;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;167;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;260;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;56;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;54;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;162;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;30;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;250;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;202;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;76;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;122;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;122;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;24;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;305;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;609;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;88;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;47;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;78;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;35;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;3;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;298;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;242;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;80;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;103;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;155;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;31;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;125;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;658;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;144;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;65;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;175;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;59;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;347;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;906;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;585;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;12;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;80;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;95;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;25;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;25;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;53;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;34;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;11;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;6;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;4;;
+Malta;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;8;;
+Malta;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;1;;
+Malta;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;10;;
+Malta;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;4;;
+Malta;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;3;;
+Malta;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;302;;
+Malta;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;362;;
+Malta;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;89;;
+Malta;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;3;;
+Malta;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;20;;
+Malta;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;33;;
+Malta;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;9;;
+Malta;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;43;;
+Malta;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;71;;
+Malta;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;12;;
+Malta;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;96;;
+Malta;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;94;;
+Malta;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;21;;
+Malta;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;632;;
+Malta;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;643;;
+Malta;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;182;;
+Malta;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;9;;
+Malta;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;347;;
+Malta;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;435;;
+Malta;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;92;;
+Malta;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;358;;
+Malta;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;256;;
+Malta;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;71;;
+Malta;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;274;;
+Malta;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;192;;
+Malta;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;47;;
+Malta;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;759;;
+Malta;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;986;;
+Malta;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;126;;
+Malta;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;50;;
+Malta;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;38;;
+Malta;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;8;;
+Malta;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;3;;
+Malta;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;434;;
+Malta;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;311;;
+Malta;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;128;;
+Malta;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;7;;
+Malta;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;440;;
+Malta;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;376;;
+Malta;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;122;;
+Malta;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;5;;
+Malta;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;368;;
+Malta;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;944;;
+Malta;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;235;;
+Malta;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;183;;
+Malta;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;359;;
+Malta;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;169;;
+Malta;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;10;;
+Malta;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;1;;
+Malta;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;134;;
+Malta;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;219;;
+Malta;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;103;;
+Malta;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;4;;
+Malta;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;279;;
+Malta;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;198;;
+Malta;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;84;;
+Malta;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;31;;
+Malta;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;58;;
+Malta;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;46;;
+Malta;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;6;;
+Malta;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;6;;
+Malta;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;9;;
+Malta;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;20;;
+Malta;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;3;;
+Malta;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;11;;
+Malta;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;5;;
+Malta;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;2;;
+Malta;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;1;;
+Malta;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;118;;
+Malta;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;205;;
+Malta;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;93;;
+Malta;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1;;
+Malta;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;2;;
+Malta;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;5;;
+Malta;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;4;;
+Malta;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;3;;
+Malta;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;11;;
+Malta;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;4;;
+Malta;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2851;;
+Malta;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2804;;
+Malta;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1121;;
+Malta;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;53;;
+Malta;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;;
+Malta;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;102;;
+Malta;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;209;;
+Malta;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;56;;
+Malta;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;1318;;
+Malta;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;850;;
+Malta;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;363;;
+Malta;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;11;;
+Malta;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;109;;
+Malta;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;78;;
+Malta;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;22;;
+Malta;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;35;;
+Malta;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;26;;
+Malta;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;17;;
+Malta;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;4;;
+Malta;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;9;;
+Malta;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;6;;
+Malta;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;39;;
+Malta;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;56;;
+Malta;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;17;;
+Malta;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;130;;
+Malta;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;239;;
+Malta;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;148;;
+Malta;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;14;;
+Malta;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;201;;
+Malta;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;251;;
+Malta;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;61;;
+Malta;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;796;;
+Malta;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;939;;
+Malta;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;395;;
+Malta;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;6;;
+Malta;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;571;;
+Malta;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;1399;;
+Malta;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;839;;
+Malta;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;18;;
+Malta;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;74;;
+Malta;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;66;;
+Malta;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;27;;
+Malta;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;881;;
+Malta;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;670;;
+Malta;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;174;;
+Malta;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;10;;
+Malta;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;14;;
+Malta;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;40;;
+Malta;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;13;;
+Malta;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;15;;
+Malta;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;8;;
+Malta;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;15;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;73;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;65;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;9;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;2;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;6;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;5;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;4;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;2;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;2;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;1;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;1;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;2;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;235;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;372;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;99;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;7;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;1;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;6;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;6;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;6;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;22;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;54;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;40;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;1;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;3;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;2;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;40;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;29;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;18;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;6;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;3;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;2;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;1;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;1;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;23;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;21;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;2;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;2;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;4;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;3;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;4;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;4;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;1;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;10;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;3;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;2;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;7;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;1;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;3;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;11;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;3;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;3;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;3;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;5;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;3;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;1;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;6;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;3;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;1;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;1370;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;1272;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;212;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;3;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;12;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;8;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;11;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;45;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;19;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;24;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;75;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;31;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;4;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;11;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;10;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;1;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;2;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;33;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;16;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;6;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;6;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;9;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;7;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;7;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;1;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;2;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;15;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;8;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;2;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;26;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;23;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;8;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;6;;
+Malta;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;21;;
+Malta;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;7;;
+Malta;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;1;;
+Malta;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;2;;
+Malta;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;165;;
+Malta;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;231;;
+Malta;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;100;;
+Malta;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;2;;
+Malta;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2;;
+Malta;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;4;;
+Malta;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;6;;
+Malta;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;7;;
+Malta;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;14;;
+Malta;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;13;;
+Malta;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;13;;
+Malta;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;23;;
+Malta;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;12;;
+Malta;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;131;;
+Malta;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;298;;
+Malta;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;172;;
+Malta;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;3;;
+Malta;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;23;;
+Malta;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;84;;
+Malta;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;28;;
+Malta;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;570;;
+Malta;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;654;;
+Malta;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;400;;
+Malta;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;14;;
+Malta;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;1;;
+Malta;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;19;;
+Malta;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;23;;
+Malta;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;22;;
+Malta;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;14;;
+Malta;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;47;;
+Malta;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;44;;
+Malta;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;8;;
+Malta;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;13;;
+Malta;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;11;;
+Malta;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;11;;
+Malta;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;32;;
+Malta;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;28;;
+Malta;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;286;;
+Malta;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;414;;
+Malta;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;261;;
+Malta;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;7;;
+Malta;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;14;;
+Malta;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;133;;
+Malta;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;105;;
+Malta;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Malta;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;42;;
+Malta;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;318;;
+Malta;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;215;;
+Malta;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;4;;
+Malta;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;121;;
+Malta;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;283;;
+Malta;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;206;;
+Malta;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;20;;
+Malta;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;47;;
+Malta;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;30;;
+Malta;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;26;;
+Malta;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;35;;
+Malta;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;47;;
+Malta;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;6;;
+Malta;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;20;;
+Malta;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;27;;
+Malta;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Malta;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;6;;
+Malta;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Malta;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Malta;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;15999;;
+Malta;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;3994;;
+Malta;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;15698;;
+Malta;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;25570;;
+Malta;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;2160;;
+Malta;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;31673;;
+Malta;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;2;;
+Malta;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1;;
+Malta;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3;;
+Malta;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;11;;
+Malta;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;11;;
+Malta;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;2;;
+Malta;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;2;;
+Malta;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;1;;
+Malta;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;1;;
+Malta;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;477;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;851;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;205;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;1;;
+Malta;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;2;;
+Malta;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;1;;
+Malta;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;2;;
+Malta;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;7;;
+Malta;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;24;;
+Malta;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;17;;
+Malta;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;6;;
+Malta;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;4;;
+Malta;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;29;;
+Malta;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;32;;
+Malta;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;2;;
+Malta;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;129;;
+Malta;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;730;;
+Malta;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;550;;
+Malta;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;47;;
+Malta;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2;;
+Malta;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;19;;
+Malta;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;14;;
+Malta;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;9;;
+Malta;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;28;;
+Malta;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;37;;
+Malta;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;3;;
+Malta;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;79;;
+Malta;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;372;;
+Malta;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;272;;
+Malta;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;16;;
+Malta;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;301;;
+Malta;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1719;;
+Malta;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1066;;
+Malta;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;148;;
+Malta;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;;
+Malta;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;50;;
+Malta;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;328;;
+Malta;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;243;;
+Malta;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;19;;
+Malta;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;208;;
+Malta;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;826;;
+Malta;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;474;;
+Malta;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;55;;
+Malta;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;104;;
+Malta;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;461;;
+Malta;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;99;;
+Malta;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;17;;
+Malta;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;92;;
+Malta;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;760;;
+Malta;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;452;;
+Malta;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;35;;
+Malta;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;11;;
+Malta;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;80;;
+Malta;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;76;;
+Malta;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;10;;
+Malta;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;62;;
+Malta;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;395;;
+Malta;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;191;;
+Malta;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;16;;
+Malta;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;56;;
+Malta;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;323;;
+Malta;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;211;;
+Malta;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;27;;
+Malta;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;50;;
+Malta;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;351;;
+Malta;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;249;;
+Malta;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;37;;
+Malta;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Education ;Y15-29;2011;30;;
+Malta;M;POP;TOTAL;Managers;Education ;Y30-49;2011;273;;
+Malta;M;POP;TOTAL;Managers;Education ;Y50-64;2011;171;;
+Malta;M;POP;TOTAL;Managers;Education ;Y65-84;2011;13;;
+Malta;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;10;;
+Malta;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;105;;
+Malta;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;62;;
+Malta;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;12;;
+Malta;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;82;;
+Malta;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;284;;
+Malta;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;67;;
+Malta;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;11;;
+Malta;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;11;;
+Malta;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;78;;
+Malta;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;40;;
+Malta;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;6;;
+Malta;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Malta;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;18;;
+Malta;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;21;;
+Malta;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;1;;
+Malta;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;7;;
+Malta;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;4;;
+Malta;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;6;;
+Malta;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;22;;
+Malta;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;19;;
+Malta;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;316;;
+Malta;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;395;;
+Malta;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;139;;
+Malta;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;11;;
+Malta;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;44;;
+Malta;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;97;;
+Malta;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;24;;
+Malta;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;16;;
+Malta;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;39;;
+Malta;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;13;;
+Malta;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;71;;
+Malta;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;105;;
+Malta;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;39;;
+Malta;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;151;;
+Malta;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;293;;
+Malta;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;73;;
+Malta;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;18;;
+Malta;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;56;;
+Malta;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;149;;
+Malta;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;78;;
+Malta;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;3;;
+Malta;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;40;;
+Malta;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;63;;
+Malta;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;20;;
+Malta;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;3;;
+Malta;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;836;;
+Malta;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;759;;
+Malta;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;111;;
+Malta;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;21;;
+Malta;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;211;;
+Malta;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;253;;
+Malta;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;53;;
+Malta;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;8;;
+Malta;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;3;;
+Malta;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;17;;
+Malta;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;5;;
+Malta;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;696;;
+Malta;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;972;;
+Malta;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;395;;
+Malta;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;76;;
+Malta;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;4;;
+Malta;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;84;;
+Malta;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;102;;
+Malta;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;59;;
+Malta;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;10;;
+Malta;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;213;;
+Malta;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;546;;
+Malta;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;267;;
+Malta;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;24;;
+Malta;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;584;;
+Malta;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;1592;;
+Malta;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;671;;
+Malta;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;110;;
+Malta;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;2;;
+Malta;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;350;;
+Malta;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;809;;
+Malta;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;336;;
+Malta;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;61;;
+Malta;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;154;;
+Malta;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;223;;
+Malta;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;79;;
+Malta;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;8;;
+Malta;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;48;;
+Malta;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;137;;
+Malta;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;114;;
+Malta;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;67;;
+Malta;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;7;;
+Malta;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;18;;
+Malta;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;5;;
+Malta;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;10;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;16;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;9;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;9;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;35;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;32;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;2;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;830;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;1239;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;509;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;13;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;20;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;291;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;156;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;38;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;110;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;112;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;265;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;459;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;229;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;8;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;384;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;631;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;338;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;48;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;183;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;657;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;350;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;9;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;770;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;797;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;354;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;15;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;349;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;463;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;183;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;5;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;216;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;413;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;124;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;10;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;58;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;216;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;76;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;4;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;267;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;274;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;125;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;23;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;2;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;101;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;180;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;104;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;4;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;124;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;628;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;445;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;11;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;95;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;235;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;66;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;7;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;170;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;590;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;282;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;11;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;221;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;237;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;52;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;3;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;70;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;107;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;67;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;12;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;10;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;4;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;4;;
+Malta;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;12;;
+Malta;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;6;;
+Malta;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;4;;
+Malta;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;7;;
+Malta;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;3;;
+Malta;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;218;;
+Malta;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;343;;
+Malta;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;183;;
+Malta;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;11;;
+Malta;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;10;;
+Malta;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;51;;
+Malta;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;32;;
+Malta;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;19;;
+Malta;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;48;;
+Malta;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;29;;
+Malta;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;67;;
+Malta;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;93;;
+Malta;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;68;;
+Malta;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;3;;
+Malta;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;587;;
+Malta;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;562;;
+Malta;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;262;;
+Malta;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;24;;
+Malta;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;303;;
+Malta;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;657;;
+Malta;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;219;;
+Malta;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;9;;
+Malta;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;195;;
+Malta;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;210;;
+Malta;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;133;;
+Malta;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;18;;
+Malta;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;134;;
+Malta;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;97;;
+Malta;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;61;;
+Malta;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;5;;
+Malta;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;346;;
+Malta;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;342;;
+Malta;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;92;;
+Malta;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;7;;
+Malta;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;5;;
+Malta;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;6;;
+Malta;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;4;;
+Malta;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;126;;
+Malta;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;70;;
+Malta;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;39;;
+Malta;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;11;;
+Malta;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;184;;
+Malta;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;152;;
+Malta;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;100;;
+Malta;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;10;;
+Malta;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;166;;
+Malta;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;462;;
+Malta;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;322;;
+Malta;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;15;;
+Malta;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;59;;
+Malta;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;79;;
+Malta;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;39;;
+Malta;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;4;;
+Malta;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;38;;
+Malta;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;95;;
+Malta;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;71;;
+Malta;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;7;;
+Malta;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;259;;
+Malta;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;198;;
+Malta;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;99;;
+Malta;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;14;;
+Malta;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;16;;
+Malta;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;27;;
+Malta;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;16;;
+Malta;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;3;;
+Malta;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Malta;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;9;;
+Malta;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;8;;
+Malta;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;2;;
+Malta;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;17;;
+Malta;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;25;;
+Malta;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Malta;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;2;;
+Malta;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;5;;
+Malta;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;7;;
+Malta;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;141;;
+Malta;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;261;;
+Malta;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;152;;
+Malta;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;13;;
+Malta;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;29;;
+Malta;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;35;;
+Malta;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;3;;
+Malta;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;24;;
+Malta;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;57;;
+Malta;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;25;;
+Malta;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;69;;
+Malta;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;84;;
+Malta;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1573;;
+Malta;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2513;;
+Malta;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1382;;
+Malta;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;170;;
+Malta;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;2;;
+Malta;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;130;;
+Malta;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;355;;
+Malta;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;230;;
+Malta;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;3;;
+Malta;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;1350;;
+Malta;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;1118;;
+Malta;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;675;;
+Malta;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;47;;
+Malta;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;96;;
+Malta;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;58;;
+Malta;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;35;;
+Malta;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;5;;
+Malta;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;29;;
+Malta;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;69;;
+Malta;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;33;;
+Malta;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;4;;
+Malta;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;6;;
+Malta;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;21;;
+Malta;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;11;;
+Malta;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;29;;
+Malta;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;35;;
+Malta;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;21;;
+Malta;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;268;;
+Malta;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;450;;
+Malta;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;428;;
+Malta;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;29;;
+Malta;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;560;;
+Malta;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;1186;;
+Malta;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;634;;
+Malta;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;3;;
+Malta;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;161;;
+Malta;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;175;;
+Malta;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;151;;
+Malta;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;7;;
+Malta;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;154;;
+Malta;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;802;;
+Malta;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;375;;
+Malta;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;5;;
+Malta;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;88;;
+Malta;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;114;;
+Malta;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;94;;
+Malta;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;3;;
+Malta;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;133;;
+Malta;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;190;;
+Malta;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;105;;
+Malta;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;16;;
+Malta;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2;;
+Malta;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;;
+Malta;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;8;;
+Malta;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;29;;
+Malta;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;13;;
+Malta;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;;
+Malta;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;200;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;600;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;605;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;114;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;9;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;29;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;10;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;3;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;2;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;6;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;3;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;18;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;25;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;23;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;6;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;4;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;7;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;17;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;21;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;2;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;49;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;144;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;86;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;2;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;26;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;18;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;13;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;6;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;17;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;7;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;2;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;12;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;8;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;2;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;4;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;4;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;14;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;31;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;15;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;39;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;106;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;42;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;2;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;1564;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;2733;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;1758;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;81;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;11;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;274;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;123;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;26;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;171;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;177;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;1683;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;3158;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;1555;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;25;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;1;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;630;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1313;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;714;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;46;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;65;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;204;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;117;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;5;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;172;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;315;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;224;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;10;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;54;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;157;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;89;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;2;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;12;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;15;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;16;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;15;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;18;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;10;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;65;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;100;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;67;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;2;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;50;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;158;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;91;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;3;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;20;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;328;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;198;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;18;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;87;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;49;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;12;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;115;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;85;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;30;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;80;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;51;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;2;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;20;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;65;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;44;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;5;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;2;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;3;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;2;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;6;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;10;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;8;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;52;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;121;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;105;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;1301;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;1503;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;534;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;12;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;10;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;58;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;55;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;33;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;96;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;85;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;190;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;451;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;270;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;6;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;122;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;203;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;97;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;5;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;499;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;1381;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;822;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;50;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;19;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;29;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;43;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;2;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;20;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;17;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;11;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;13;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;11;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;2;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;3;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;4;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;9;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;15;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;17;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;40;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;93;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;107;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;8;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;4;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;70;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;171;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;1;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;8;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;7;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;5;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;61;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;91;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;6;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;7;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;8;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;29;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;28;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;16;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;12;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;19;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;24;;
+Malta;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;33;;
+Malta;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;20;;
+Malta;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;14;;
+Malta;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;33;;
+Malta;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;17;;
+Malta;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;607;;
+Malta;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;616;;
+Malta;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;331;;
+Malta;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;7;;
+Malta;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2;;
+Malta;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;33;;
+Malta;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;76;;
+Malta;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;132;;
+Malta;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;217;;
+Malta;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;191;;
+Malta;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;529;;
+Malta;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;797;;
+Malta;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;478;;
+Malta;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;5;;
+Malta;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;962;;
+Malta;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;860;;
+Malta;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;317;;
+Malta;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;14;;
+Malta;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;281;;
+Malta;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;614;;
+Malta;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;465;;
+Malta;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;8;;
+Malta;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;643;;
+Malta;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;435;;
+Malta;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;327;;
+Malta;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;9;;
+Malta;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;24;;
+Malta;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;45;;
+Malta;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;45;;
+Malta;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;2;;
+Malta;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;30;;
+Malta;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;67;;
+Malta;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;75;;
+Malta;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;2;;
+Malta;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;9;;
+Malta;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;15;;
+Malta;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;12;;
+Malta;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;25;;
+Malta;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;40;;
+Malta;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;32;;
+Malta;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;301;;
+Malta;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;334;;
+Malta;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;214;;
+Malta;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;5;;
+Malta;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;29;;
+Malta;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;394;;
+Malta;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;546;;
+Malta;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;3;;
+Malta;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;33;;
+Malta;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;160;;
+Malta;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;199;;
+Malta;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;81;;
+Malta;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;177;;
+Malta;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;167;;
+Malta;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;4;;
+Malta;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;20;;
+Malta;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;52;;
+Malta;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;49;;
+Malta;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;47;;
+Malta;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;64;;
+Malta;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;71;;
+Malta;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;1;;
+Malta;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2;;
+Malta;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;10;;
+Malta;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;7;;
+Malta;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;2;;
+Malta;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;2;;
+Malta;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;5;;
+Malta;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Malta;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Education ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Education ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Education ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Education ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Netherlands;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Education ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Education ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Education ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Education ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Netherlands;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;:;c;
+Norway;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Education ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Education ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Education ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Education ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;:;c;
+Norway;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;:;c;
+Norway;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Norway;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;:;c;
+Norway;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Education ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Education ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Education ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Education ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;:;c;
+Norway;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;:;c;
+Norway;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Norway;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;2331939;;
+Poland;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;1176278;;
+Poland;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;2477011;;
+Poland;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;2754225;;
+Poland;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;392079;;
+Poland;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;2815656;;
+Poland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;956;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;1099;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;594;;
+Poland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;2792;;
+Poland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;2496;;
+Poland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;866;;
+Poland;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;544;;
+Poland;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;7850;;
+Poland;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;34948;;
+Poland;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;14234;;
+Poland;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;597;;
+Poland;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1762;;
+Poland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;985;;
+Poland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;352;u;
+Poland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1971;;
+Poland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1350;;
+Poland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;2273;;
+Poland;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;9612;;
+Poland;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;5309;;
+Poland;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;257;u;
+Poland;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;16251;;
+Poland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;49739;;
+Poland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;15405;;
+Poland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;792;;
+Poland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;1810;;
+Poland;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;9488;;
+Poland;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;3838;;
+Poland;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;5000;;
+Poland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;10840;;
+Poland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;4064;;
+Poland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;282;u;
+Poland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;2129;;
+Poland;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;7138;;
+Poland;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;1735;;
+Poland;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;3434;;
+Poland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;15424;;
+Poland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;4997;;
+Poland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;413;u;
+Poland;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;3319;;
+Poland;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;3540;;
+Poland;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;273;u;
+Poland;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;3278;;
+Poland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;12297;;
+Poland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;4681;;
+Poland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;426;u;
+Poland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;1837;;
+Poland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;6054;;
+Poland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;2623;;
+Poland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;9602;;
+Poland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;40810;;
+Poland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;21927;;
+Poland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;340;u;
+Poland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Education ;Y15-29;2011;1755;;
+Poland;F;POP;TOTAL;Managers;Education ;Y30-49;2011;16777;;
+Poland;F;POP;TOTAL;Managers;Education ;Y50-64;2011;11691;;
+Poland;F;POP;TOTAL;Managers;Education ;Y65-84;2011;304;u;
+Poland;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;1358;;
+Poland;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;20005;;
+Poland;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;12505;;
+Poland;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;303;u;
+Poland;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;1041;;
+Poland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;5043;;
+Poland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;3625;;
+Poland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;636;;
+Poland;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;2303;;
+Poland;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;1399;;
+Poland;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;512;u;
+Poland;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;1600;;
+Poland;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;821;;
+Poland;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;1926;;
+Poland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;4646;;
+Poland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;2348;;
+Poland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;831;;
+Poland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;2853;;
+Poland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;1684;;
+Poland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;26886;;
+Poland;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;50271;;
+Poland;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;14144;;
+Poland;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;501;u;
+Poland;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2124;;
+Poland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;6316;;
+Poland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3151;;
+Poland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1418;;
+Poland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;3900;;
+Poland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1780;;
+Poland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;7684;;
+Poland;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;11175;;
+Poland;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;5056;;
+Poland;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;278;u;
+Poland;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;22475;;
+Poland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;39280;;
+Poland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;12734;;
+Poland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1554;;
+Poland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;4778;;
+Poland;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;10044;;
+Poland;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;4071;;
+Poland;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;3643;;
+Poland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;4970;;
+Poland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;1604;;
+Poland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;17754;;
+Poland;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;24128;;
+Poland;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;6016;;
+Poland;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;561;;
+Poland;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;37012;;
+Poland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;66957;;
+Poland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;15114;;
+Poland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;2111;;
+Poland;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;5228;;
+Poland;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;3984;;
+Poland;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;189;u;
+Poland;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;36542;;
+Poland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;54869;;
+Poland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;20565;;
+Poland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;2602;;
+Poland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;6784;;
+Poland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;6386;;
+Poland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;1860;;
+Poland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;26640;;
+Poland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;69979;;
+Poland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;27508;;
+Poland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;1299;;
+Poland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;97100;;
+Poland;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;382361;;
+Poland;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;120784;;
+Poland;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;4374;;
+Poland;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;44754;;
+Poland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;156685;;
+Poland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;73027;;
+Poland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;8319;;
+Poland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;7814;;
+Poland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;16612;;
+Poland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;8139;;
+Poland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;685;;
+Poland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;4092;;
+Poland;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;4862;;
+Poland;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;1711;;
+Poland;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;265;u;
+Poland;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;2321;;
+Poland;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;3774;;
+Poland;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;1403;;
+Poland;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;4013;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;13439;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;7744;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;233;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;651;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;3118;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;2101;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;36140;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;79760;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;31351;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;699;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1158;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;5002;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3823;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1934;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;4345;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2990;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;6487;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;12637;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;6647;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;251;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;36902;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;63460;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;22874;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1172;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;8739;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;19068;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;7062;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;3355;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;6215;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;3170;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;6383;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;8281;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;2696;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;19520;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;31820;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;13998;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;468;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;4902;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;13746;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;9322;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;419;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;25838;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;40251;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;17055;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;1112;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;3887;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;5127;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;2372;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;36142;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;91351;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;41739;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;447;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;8897;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;20035;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;13506;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;516;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;35882;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;89886;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;51678;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;1654;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;9111;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;16271;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;8922;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;411;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;3491;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;5233;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;2977;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;468;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;595;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;828;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;606;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;2786;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;4393;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;1895;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;2062;;
+Poland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;3624;;
+Poland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;2104;;
+Poland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;801;;
+Poland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;3256;;
+Poland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;2271;;
+Poland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;23594;;
+Poland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;41092;;
+Poland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;16217;;
+Poland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;212;u;
+Poland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1306;;
+Poland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;4336;;
+Poland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3010;;
+Poland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;2126;;
+Poland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;3068;;
+Poland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1762;;
+Poland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;6832;;
+Poland;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;8918;;
+Poland;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;3851;;
+Poland;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;24833;;
+Poland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;34540;;
+Poland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;9762;;
+Poland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;224;u;
+Poland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;17289;;
+Poland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;43099;;
+Poland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;19057;;
+Poland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;10129;;
+Poland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;7851;;
+Poland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;2624;;
+Poland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;7140;;
+Poland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;7310;;
+Poland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;2837;;
+Poland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;14768;;
+Poland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;22523;;
+Poland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;10565;;
+Poland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;3918;;
+Poland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;8019;;
+Poland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;7066;;
+Poland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;14590;;
+Poland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;13010;;
+Poland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;4970;;
+Poland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;221;u;
+Poland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;10662;;
+Poland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;8157;;
+Poland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;2800;;
+Poland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;33816;;
+Poland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;39752;;
+Poland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;20599;;
+Poland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;13419;;
+Poland;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;19316;;
+Poland;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;12530;;
+Poland;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;306;u;
+Poland;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;11041;;
+Poland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;17609;;
+Poland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;11595;;
+Poland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;240;u;
+Poland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;4747;;
+Poland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;5248;;
+Poland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;2845;;
+Poland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;3174;;
+Poland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;4031;;
+Poland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;1753;;
+Poland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;2164;;
+Poland;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;2156;;
+Poland;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;782;;
+Poland;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;2522;;
+Poland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;6719;;
+Poland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;3535;;
+Poland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;304;u;
+Poland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;604;;
+Poland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;358;u;
+Poland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;29148;;
+Poland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;49230;;
+Poland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;16121;;
+Poland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;658;;
+Poland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1006;;
+Poland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1643;;
+Poland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;863;;
+Poland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;192;u;
+Poland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;767;;
+Poland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;605;;
+Poland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;1156;;
+Poland;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;2584;;
+Poland;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;921;;
+Poland;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;307795;;
+Poland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;466043;;
+Poland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;138872;;
+Poland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;6199;;
+Poland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;2611;;
+Poland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;7714;;
+Poland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;3574;;
+Poland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;68867;;
+Poland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;64026;;
+Poland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;21637;;
+Poland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;775;;
+Poland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;9593;;
+Poland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;4590;;
+Poland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;1254;;
+Poland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;3213;;
+Poland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;2968;;
+Poland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;765;;
+Poland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;396;u;
+Poland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;2556;;
+Poland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;2712;;
+Poland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;3370;;
+Poland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;1965;;
+Poland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;636;;
+Poland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;9385;;
+Poland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;10884;;
+Poland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;7443;;
+Poland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;268;u;
+Poland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;5091;;
+Poland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;11670;;
+Poland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;4164;;
+Poland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;9256;;
+Poland;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;34515;;
+Poland;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;25600;;
+Poland;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;393;u;
+Poland;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;6708;;
+Poland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;26304;;
+Poland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;18523;;
+Poland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;469;u;
+Poland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;4770;;
+Poland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;5060;;
+Poland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;2703;;
+Poland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;52812;;
+Poland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;51998;;
+Poland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;10074;;
+Poland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;1173;;
+Poland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;872;;
+Poland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1638;;
+Poland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;997;;
+Poland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;5687;;
+Poland;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;6549;;
+Poland;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;2262;;
+Poland;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;102848;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;375318;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;239438;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;42658;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;265;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;266;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;1098;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;541;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;209;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;947;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2578;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1049;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;194;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;311;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;162;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;264;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;1080;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;563;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;480;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;278;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;201;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;375;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;231;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;194;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;474;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;194;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;719;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;2299;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;798;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;561;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;487;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;52479;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;240310;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;72329;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;1401;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;207;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;222;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;336;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;176;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;871;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;2755;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;1039;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1747;;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;5511;;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1993;;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;1415;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;794;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;194;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;432;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;182;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;236;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;609;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;201;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;260;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;627;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;241;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;361;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;716;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;325;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;300;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;257;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;287;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;272;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;649;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;574;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;308;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;834;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;434;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;683;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;3008;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;1271;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;816;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;2811;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;797;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;274;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;731;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;243;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;1020;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;514;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;29978;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;78856;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;21739;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;253;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;753;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;289;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;299;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;754;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;261;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;996;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2098;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;643;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;984;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;9180;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;3300;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;285;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;461;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;198;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;219;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;235;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;556;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;363;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;759;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;2913;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;1336;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;518;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;1110;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;379;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;3866;;
+Poland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;8407;;
+Poland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;4090;;
+Poland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;200;u;
+Poland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;1671;;
+Poland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;1113;;
+Poland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;24835;;
+Poland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;67766;;
+Poland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;29147;;
+Poland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;376;u;
+Poland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1127;;
+Poland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1306;;
+Poland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;578;;
+Poland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;3506;;
+Poland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2489;;
+Poland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;600;;
+Poland;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;2702;;
+Poland;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;2110;;
+Poland;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;5618;;
+Poland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;12435;;
+Poland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;7786;;
+Poland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;357;u;
+Poland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;1726;;
+Poland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;4651;;
+Poland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;3576;;
+Poland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;8575;;
+Poland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;19615;;
+Poland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;9994;;
+Poland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;179;u;
+Poland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;870;;
+Poland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;990;;
+Poland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;805;;
+Poland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;545;;
+Poland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;2547;;
+Poland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;2849;;
+Poland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;443;u;
+Poland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;4340;;
+Poland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;5322;;
+Poland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;209;u;
+Poland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;725;;
+Poland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;1652;;
+Poland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;1582;;
+Poland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;8322;;
+Poland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;34017;;
+Poland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;27699;;
+Poland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;639;;
+Poland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;1965;;
+Poland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;13294;;
+Poland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;11115;;
+Poland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;4937;;
+Poland;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;53230;;
+Poland;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;47890;;
+Poland;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;470;u;
+Poland;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;4538;;
+Poland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;97934;;
+Poland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;57488;;
+Poland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;416;u;
+Poland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;1058;;
+Poland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;4517;;
+Poland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;4399;;
+Poland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;195;u;
+Poland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;826;;
+Poland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;3733;;
+Poland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;2801;;
+Poland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;207;u;
+Poland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;254;u;
+Poland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;681;;
+Poland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;549;;
+Poland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;1912;;
+Poland;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;5096;;
+Poland;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;2693;;
+Poland;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;1410;;
+Poland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;3731;;
+Poland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;1994;;
+Poland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;200;u;
+Poland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;310;u;
+Poland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;220;u;
+Poland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;4242;;
+Poland;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;10341;;
+Poland;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;4339;;
+Poland;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;207;u;
+Poland;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;402;u;
+Poland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;310;u;
+Poland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;189;u;
+Poland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;654;;
+Poland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;387;u;
+Poland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;604;;
+Poland;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;1197;;
+Poland;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;715;;
+Poland;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2340;;
+Poland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4684;;
+Poland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2069;;
+Poland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;771;;
+Poland;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;2042;;
+Poland;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;1120;;
+Poland;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;1003;;
+Poland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;1447;;
+Poland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;822;;
+Poland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;844;;
+Poland;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;736;;
+Poland;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;303;u;
+Poland;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;1220;;
+Poland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;1381;;
+Poland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;643;;
+Poland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;428;u;
+Poland;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;1705;;
+Poland;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;1628;;
+Poland;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;1389;;
+Poland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;1707;;
+Poland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;913;;
+Poland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;864;;
+Poland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;1612;;
+Poland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;1151;;
+Poland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;1948;;
+Poland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;3353;;
+Poland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;1964;;
+Poland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;1949;;
+Poland;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;6182;;
+Poland;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;4946;;
+Poland;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;901;;
+Poland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;3179;;
+Poland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;1978;;
+Poland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;767;;
+Poland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;1232;;
+Poland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;699;;
+Poland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;500;u;
+Poland;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;1115;;
+Poland;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;785;;
+Poland;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;195;u;
+Poland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;55485;;
+Poland;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;134348;;
+Poland;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;67936;;
+Poland;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;1340;;
+Poland;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;:;u;
+Poland;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;2020345;;
+Poland;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;782071;;
+Poland;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;1607758;;
+Poland;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;1682444;;
+Poland;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;137866;;
+Poland;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;2965914;;
+Poland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;32180;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;54927;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;8018;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;226;u;
+Poland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;1112;;
+Poland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;5358;;
+Poland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;4567;;
+Poland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;235;u;
+Poland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;502;u;
+Poland;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;2682;;
+Poland;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;2569;;
+Poland;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;195;u;
+Poland;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;15738;;
+Poland;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;77895;;
+Poland;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;37674;;
+Poland;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;2502;;
+Poland;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;412;u;
+Poland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;4619;;
+Poland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3568;;
+Poland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;623;;
+Poland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;3954;;
+Poland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3895;;
+Poland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;12487;;
+Poland;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;50243;;
+Poland;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;30969;;
+Poland;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;1885;;
+Poland;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;15700;;
+Poland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;63591;;
+Poland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;23496;;
+Poland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1511;;
+Poland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;4185;;
+Poland;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;18309;;
+Poland;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;9529;;
+Poland;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;324;u;
+Poland;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;3061;;
+Poland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;7158;;
+Poland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;3381;;
+Poland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;245;u;
+Poland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;4169;;
+Poland;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;16811;;
+Poland;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;3433;;
+Poland;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;190;u;
+Poland;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;2234;;
+Poland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;13757;;
+Poland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;2970;;
+Poland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;209;u;
+Poland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;289;u;
+Poland;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;2788;;
+Poland;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;4107;;
+Poland;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;400;u;
+Poland;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;2617;;
+Poland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;11683;;
+Poland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;4574;;
+Poland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;921;;
+Poland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;2050;;
+Poland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;7410;;
+Poland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;4606;;
+Poland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;305;u;
+Poland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;3997;;
+Poland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;24998;;
+Poland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;15048;;
+Poland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;1050;;
+Poland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Education ;Y15-29;2011;545;;
+Poland;M;POP;TOTAL;Managers;Education ;Y30-49;2011;5489;;
+Poland;M;POP;TOTAL;Managers;Education ;Y50-64;2011;4525;;
+Poland;M;POP;TOTAL;Managers;Education ;Y65-84;2011;457;u;
+Poland;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;538;u;
+Poland;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;3158;;
+Poland;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;3109;;
+Poland;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;214;u;
+Poland;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;732;;
+Poland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;3607;;
+Poland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;2582;;
+Poland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;222;u;
+Poland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;621;;
+Poland;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;2394;;
+Poland;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;1448;;
+Poland;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;202;u;
+Poland;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;626;;
+Poland;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;2364;;
+Poland;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;1198;;
+Poland;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;2121;;
+Poland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;6112;;
+Poland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;3212;;
+Poland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;283;u;
+Poland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;2474;;
+Poland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;8358;;
+Poland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;3751;;
+Poland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;30512;;
+Poland;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;59055;;
+Poland;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;20001;;
+Poland;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;1911;;
+Poland;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;2892;;
+Poland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;10033;;
+Poland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;4728;;
+Poland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;364;u;
+Poland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1109;;
+Poland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2837;;
+Poland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1905;;
+Poland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;11980;;
+Poland;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;19926;;
+Poland;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;12264;;
+Poland;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;1853;;
+Poland;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;13495;;
+Poland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;25492;;
+Poland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;6259;;
+Poland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;829;;
+Poland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;3523;;
+Poland;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;7487;;
+Poland;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;4162;;
+Poland;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;1445;;
+Poland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;2046;;
+Poland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;744;;
+Poland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;36460;;
+Poland;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;49876;;
+Poland;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;8142;;
+Poland;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;902;;
+Poland;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;19367;;
+Poland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;32785;;
+Poland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;5079;;
+Poland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;280;u;
+Poland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;901;;
+Poland;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;2231;;
+Poland;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;2024;;
+Poland;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;372;u;
+Poland;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;28765;;
+Poland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;58142;;
+Poland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;27366;;
+Poland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;6464;;
+Poland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;2913;;
+Poland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;3683;;
+Poland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;1168;;
+Poland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;191;u;
+Poland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;10057;;
+Poland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;32453;;
+Poland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;13953;;
+Poland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;1793;;
+Poland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;21700;;
+Poland;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;92592;;
+Poland;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;44067;;
+Poland;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;8386;;
+Poland;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;12215;;
+Poland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;37003;;
+Poland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;21041;;
+Poland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;5648;;
+Poland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;5326;;
+Poland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;12499;;
+Poland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;6953;;
+Poland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;1011;;
+Poland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;3081;;
+Poland;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;11854;;
+Poland;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;8088;;
+Poland;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;1973;;
+Poland;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;1457;;
+Poland;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;2588;;
+Poland;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;1241;;
+Poland;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;204;u;
+Poland;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;8747;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;21455;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;12850;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;340;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;3859;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;12589;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;5882;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;67910;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;137106;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;64611;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;2068;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;4125;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;22143;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;15395;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;2800;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;9781;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;8416;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;211;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;26726;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;50183;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;27849;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;1520;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;57236;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;100158;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;28630;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1405;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;13074;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;29113;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;17133;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;465;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;3228;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;4864;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;1926;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;16416;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;20493;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;4378;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;10236;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;16567;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;7079;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;778;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;3042;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;7855;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;7390;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;684;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;16693;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;23305;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;13727;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;2066;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;3981;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;4760;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;2063;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;18183;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;62370;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;16397;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;886;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;4000;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;5945;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;4956;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;465;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;10055;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;17588;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;8033;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;514;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;8941;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;9501;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;4945;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;581;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;5420;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;6551;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;3114;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;337;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;3340;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;5253;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;2279;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;1810;;
+Poland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;2612;;
+Poland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;1765;;
+Poland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;479;u;
+Poland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;1358;;
+Poland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;996;;
+Poland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;36369;;
+Poland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;49728;;
+Poland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;18128;;
+Poland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;305;u;
+Poland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;878;;
+Poland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;3290;;
+Poland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2119;;
+Poland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1144;;
+Poland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2797;;
+Poland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1616;;
+Poland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;3283;;
+Poland;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;4900;;
+Poland;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;2654;;
+Poland;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;48572;;
+Poland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;46517;;
+Poland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;13795;;
+Poland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;407;u;
+Poland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;27088;;
+Poland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;37658;;
+Poland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;14711;;
+Poland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;179;u;
+Poland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;2482;;
+Poland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;1703;;
+Poland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;730;;
+Poland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;3365;;
+Poland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;3089;;
+Poland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;884;;
+Poland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;3930;;
+Poland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;4853;;
+Poland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;1809;;
+Poland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;995;;
+Poland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;2694;;
+Poland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;2658;;
+Poland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;263;u;
+Poland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;3973;;
+Poland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;2925;;
+Poland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;973;;
+Poland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;3616;;
+Poland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;3207;;
+Poland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;1376;;
+Poland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;7449;;
+Poland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;8370;;
+Poland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;5427;;
+Poland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;266;u;
+Poland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;1102;;
+Poland;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;1576;;
+Poland;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;1622;;
+Poland;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;1349;;
+Poland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;1684;;
+Poland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;1240;;
+Poland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;1350;;
+Poland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;1410;;
+Poland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;877;;
+Poland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;804;;
+Poland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;1027;;
+Poland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;541;;
+Poland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;1893;;
+Poland;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;1740;;
+Poland;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;699;;
+Poland;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;2162;;
+Poland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;4660;;
+Poland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;3582;;
+Poland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;275;u;
+Poland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;619;;
+Poland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;2948;;
+Poland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;1269;;
+Poland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;10401;;
+Poland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;19494;;
+Poland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;15858;;
+Poland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;1708;;
+Poland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1657;;
+Poland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;2579;;
+Poland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1746;;
+Poland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;504;u;
+Poland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1320;;
+Poland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1751;;
+Poland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;2315;;
+Poland;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;4475;;
+Poland;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;3602;;
+Poland;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;366;u;
+Poland;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;102399;;
+Poland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;138770;;
+Poland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;59596;;
+Poland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4126;;
+Poland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;2542;;
+Poland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;9745;;
+Poland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;6049;;
+Poland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;370;u;
+Poland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;42748;;
+Poland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;25747;;
+Poland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;8433;;
+Poland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;524;u;
+Poland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;5306;;
+Poland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;2837;;
+Poland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;775;;
+Poland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;1164;;
+Poland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;1916;;
+Poland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;996;;
+Poland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;392;u;
+Poland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;1676;;
+Poland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;2402;;
+Poland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;297;u;
+Poland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;1189;;
+Poland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;1323;;
+Poland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;722;;
+Poland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;192;u;
+Poland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;23114;;
+Poland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;46993;;
+Poland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;59866;;
+Poland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;6149;;
+Poland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;28809;;
+Poland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;79696;;
+Poland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;11906;;
+Poland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;365;u;
+Poland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;3295;;
+Poland;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;7898;;
+Poland;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;8028;;
+Poland;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;718;;
+Poland;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;2529;;
+Poland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;6170;;
+Poland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;4044;;
+Poland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;179;u;
+Poland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;3479;;
+Poland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;3480;;
+Poland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;2493;;
+Poland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;221;u;
+Poland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;4731;;
+Poland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;6701;;
+Poland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;3172;;
+Poland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;739;;
+Poland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;316;u;
+Poland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;225;u;
+Poland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;1905;;
+Poland;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;2460;;
+Poland;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;1523;;
+Poland;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;168279;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;409168;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;323618;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;50467;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;343;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;1155;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;2247;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;1311;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;212;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;498;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;381;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;177;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;223;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;200;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;472;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1120;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;648;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;182;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;352;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;391;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;384;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;507;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;226;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;548;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;364;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;2202;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;3405;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;1856;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;211;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;708;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;774;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;425;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;777;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;219;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;272;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;188;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;454;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;441;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;166;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;182;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;459;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;268;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;418;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;950;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;526;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;5637;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;13086;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;8263;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;7103;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;33773;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;11132;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;257073;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;496059;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;218232;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;4976;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;4013;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;23593;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;17097;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;4435;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;15787;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;12685;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;213348;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;419546;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;172300;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;1744;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;62527;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;96692;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;34460;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1195;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;4637;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;22744;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;18805;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;813;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;2444;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;2123;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;2868;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;6459;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;2171;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;317;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;232;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;702;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;5409;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;7378;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;2079;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;3978;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;1963;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;2132;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;4664;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;3260;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;239;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1470;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;7569;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;8533;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;222;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;1120;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;5686;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;9606;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;424;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;642;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;4931;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;5723;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;171;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;1680;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;4405;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;3724;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;5135;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;11321;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;6800;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;876;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;299;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;197;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;7605;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;14068;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;6579;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;5761;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;15753;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;12507;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;22967;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;71357;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;14701;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;100546;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;165299;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;66535;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;748;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1292;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;7638;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;6487;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;5541;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;16812;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;10755;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;23596;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;46487;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;25992;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;329;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;27890;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;45207;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;15587;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;370;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;67710;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;216605;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;125405;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;4375;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;2288;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;2036;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;914;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;259;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;727;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;336;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;423;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;240;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;187;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;1290;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;1732;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;952;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;1662;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;1282;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;1624;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;3709;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;2138;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;2455;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;8666;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;7049;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;195;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;380;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;2531;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;3314;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;1210;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;6271;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;5996;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;595;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;1412;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;903;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;1448;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;2807;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;1586;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;235;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;2838;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;5488;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;2808;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;7644;;
+Poland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;9432;;
+Poland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;5805;;
+Poland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;290;u;
+Poland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;1334;;
+Poland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;3699;;
+Poland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;1489;;
+Poland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;25815;;
+Poland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;26086;;
+Poland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;13888;;
+Poland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;585;;
+Poland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;300;u;
+Poland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;555;;
+Poland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;675;;
+Poland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;3038;;
+Poland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;7178;;
+Poland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;5418;;
+Poland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;44503;;
+Poland;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;62908;;
+Poland;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;21009;;
+Poland;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;453;u;
+Poland;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;11461;;
+Poland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;9708;;
+Poland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5795;;
+Poland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;582;;
+Poland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;4398;;
+Poland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;5460;;
+Poland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;4174;;
+Poland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;488;u;
+Poland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;4230;;
+Poland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;2401;;
+Poland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;1567;;
+Poland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;1133;;
+Poland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;447;u;
+Poland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;352;u;
+Poland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;197;u;
+Poland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;162;u;
+Poland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;288;u;
+Poland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;1455;;
+Poland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;2183;;
+Poland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;284;u;
+Poland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;776;;
+Poland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;640;;
+Poland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;376;u;
+Poland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;4006;;
+Poland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;6415;;
+Poland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;7099;;
+Poland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;558;;
+Poland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;2007;;
+Poland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;5346;;
+Poland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;6816;;
+Poland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;966;;
+Poland;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;5709;;
+Poland;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;10399;;
+Poland;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;856;;
+Poland;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;916;;
+Poland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;2687;;
+Poland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;2514;;
+Poland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;165;u;
+Poland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;967;;
+Poland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;1225;;
+Poland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;1534;;
+Poland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;1182;;
+Poland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;2411;;
+Poland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;1618;;
+Poland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;202;u;
+Poland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;197;u;
+Poland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;202;u;
+Poland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;206;u;
+Poland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;3563;;
+Poland;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;4536;;
+Poland;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;2529;;
+Poland;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;1899;;
+Poland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;3486;;
+Poland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;1925;;
+Poland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;208;u;
+Poland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;699;;
+Poland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;273;u;
+Poland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;6783;;
+Poland;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;10730;;
+Poland;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;4702;;
+Poland;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;185;u;
+Poland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;651;;
+Poland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;430;u;
+Poland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;371;u;
+Poland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;772;;
+Poland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;613;;
+Poland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;1894;;
+Poland;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;4162;;
+Poland;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;1836;;
+Poland;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2861;;
+Poland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;5134;;
+Poland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2300;;
+Poland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;926;;
+Poland;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;2330;;
+Poland;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;1396;;
+Poland;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;662;;
+Poland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;807;;
+Poland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;404;u;
+Poland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;817;;
+Poland;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;898;;
+Poland;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;229;u;
+Poland;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;745;;
+Poland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;623;;
+Poland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;237;u;
+Poland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;249;u;
+Poland;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;857;;
+Poland;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;726;;
+Poland;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;1153;;
+Poland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;1682;;
+Poland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;896;;
+Poland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;948;;
+Poland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;1318;;
+Poland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;839;;
+Poland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;763;;
+Poland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;1654;;
+Poland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;1109;;
+Poland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;528;u;
+Poland;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;1542;;
+Poland;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;755;;
+Poland;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;268;u;
+Poland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;803;;
+Poland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;399;u;
+Poland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;730;;
+Poland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;818;;
+Poland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;318;u;
+Poland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;450;u;
+Poland;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;774;;
+Poland;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;503;u;
+Poland;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Poland;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;61685;;
+Poland;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;130031;;
+Poland;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;82948;;
+Poland;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;1896;;
+Poland;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;:;u;
+Poland;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;448632;;
+Portugal;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;265839;;
+Portugal;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;534630;;
+Portugal;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;985440;;
+Portugal;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;158628;;
+Portugal;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;768330;;
+Portugal;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;3562;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;946;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;112;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;5;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;15;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;3;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;49;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;13;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;1;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;3;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;1;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;1;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;2;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;3;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;171;;
+Portugal;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;2055;;
+Portugal;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;2065;;
+Portugal;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;297;;
+Portugal;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;6;;
+Portugal;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;10;;
+Portugal;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;108;;
+Portugal;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;57;;
+Portugal;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;4;;
+Portugal;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;1249;;
+Portugal;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;10200;;
+Portugal;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;4196;;
+Portugal;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;357;;
+Portugal;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;7;;
+Portugal;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;52;;
+Portugal;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;188;;
+Portugal;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;70;;
+Portugal;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;37;;
+Portugal;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;366;;
+Portugal;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;77;;
+Portugal;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;5;;
+Portugal;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;302;;
+Portugal;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;2474;;
+Portugal;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;1246;;
+Portugal;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;83;;
+Portugal;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3996;;
+Portugal;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;21713;;
+Portugal;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;10522;;
+Portugal;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1370;;
+Portugal;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;15;;
+Portugal;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;227;;
+Portugal;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;1679;;
+Portugal;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;682;;
+Portugal;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;44;;
+Portugal;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;1711;;
+Portugal;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;9162;;
+Portugal;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;5078;;
+Portugal;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;513;;
+Portugal;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;4;;
+Portugal;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;635;;
+Portugal;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;2430;;
+Portugal;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;284;;
+Portugal;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;8;;
+Portugal;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;429;;
+Portugal;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;2375;;
+Portugal;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;399;;
+Portugal;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;12;;
+Portugal;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;179;;
+Portugal;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;1295;;
+Portugal;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;417;;
+Portugal;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;46;;
+Portugal;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;5;;
+Portugal;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;630;;
+Portugal;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;3106;;
+Portugal;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;747;;
+Portugal;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;49;;
+Portugal;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;508;;
+Portugal;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;2577;;
+Portugal;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;640;;
+Portugal;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;39;;
+Portugal;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;135;;
+Portugal;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;1900;;
+Portugal;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;775;;
+Portugal;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;23;;
+Portugal;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Education ;Y15-29;2011;198;;
+Portugal;F;POP;TOTAL;Managers;Education ;Y30-49;2011;2129;;
+Portugal;F;POP;TOTAL;Managers;Education ;Y50-64;2011;1027;;
+Portugal;F;POP;TOTAL;Managers;Education ;Y65-84;2011;85;;
+Portugal;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;4;;
+Portugal;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;559;;
+Portugal;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;3534;;
+Portugal;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;1315;;
+Portugal;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;123;;
+Portugal;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;5;;
+Portugal;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;171;;
+Portugal;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;635;;
+Portugal;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;129;;
+Portugal;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;12;;
+Portugal;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;209;;
+Portugal;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;1551;;
+Portugal;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;623;;
+Portugal;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;48;;
+Portugal;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Portugal;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Portugal;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;20;;
+Portugal;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;10;;
+Portugal;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;278;;
+Portugal;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;803;;
+Portugal;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;99;;
+Portugal;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;3;;
+Portugal;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;36;;
+Portugal;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;83;;
+Portugal;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;11;;
+Portugal;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;3076;;
+Portugal;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;7585;;
+Portugal;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;815;;
+Portugal;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;50;;
+Portugal;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;3;;
+Portugal;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;145;;
+Portugal;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;370;;
+Portugal;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;124;;
+Portugal;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;238;;
+Portugal;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;821;;
+Portugal;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;79;;
+Portugal;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;1246;;
+Portugal;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;2912;;
+Portugal;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;234;;
+Portugal;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;10;;
+Portugal;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;4720;;
+Portugal;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;8186;;
+Portugal;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1362;;
+Portugal;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;187;;
+Portugal;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;23;;
+Portugal;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;221;;
+Portugal;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;1117;;
+Portugal;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;317;;
+Portugal;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;7;;
+Portugal;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;454;;
+Portugal;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;668;;
+Portugal;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;99;;
+Portugal;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;9;;
+Portugal;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;3340;;
+Portugal;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;7356;;
+Portugal;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;814;;
+Portugal;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;23;;
+Portugal;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;806;;
+Portugal;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;2657;;
+Portugal;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;384;;
+Portugal;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;5;;
+Portugal;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;147;;
+Portugal;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;452;;
+Portugal;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;59;;
+Portugal;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;2;;
+Portugal;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;12378;;
+Portugal;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;26085;;
+Portugal;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;2795;;
+Portugal;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;186;;
+Portugal;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;1145;;
+Portugal;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;2023;;
+Portugal;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;220;;
+Portugal;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;12;;
+Portugal;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;3332;;
+Portugal;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;19341;;
+Portugal;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;5022;;
+Portugal;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;65;;
+Portugal;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;23945;;
+Portugal;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;119704;;
+Portugal;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;40516;;
+Portugal;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;776;;
+Portugal;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;8;;
+Portugal;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;29887;;
+Portugal;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;49692;;
+Portugal;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;13948;;
+Portugal;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;667;;
+Portugal;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;13;;
+Portugal;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;1591;;
+Portugal;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;3012;;
+Portugal;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;698;;
+Portugal;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;65;;
+Portugal;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;2;;
+Portugal;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;708;;
+Portugal;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;1766;;
+Portugal;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;319;;
+Portugal;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;46;;
+Portugal;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;3;;
+Portugal;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;12;;
+Portugal;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;21;;
+Portugal;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;111;;
+Portugal;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;35;;
+Portugal;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;207;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;681;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;218;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;3;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;53;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;143;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;50;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;4;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;5039;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;17393;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;4889;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;106;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;4;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;122;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;407;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;271;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;262;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1044;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;181;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;5;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;1252;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;3785;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;910;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;23;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;6202;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;18806;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;4349;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;183;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;2;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;823;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;3285;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;1031;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;19;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;798;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;2056;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;642;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;26;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;1645;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;4580;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;888;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;21;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;5599;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;22867;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;5619;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;72;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;882;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;3768;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;1211;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;59;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;3;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;6661;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;20506;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;4538;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;174;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;4;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;1816;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;3865;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;745;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;32;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1561;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;14136;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;7773;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;72;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;1258;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;4746;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;2007;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;75;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;8271;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;18364;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;6203;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;339;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;2;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;1346;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;2008;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;370;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;22;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;673;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;1784;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;627;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;99;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;3;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;4;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;24;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;6;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;16;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;92;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;46;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;3;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;345;;
+Portugal;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;1238;;
+Portugal;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;495;;
+Portugal;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;10;;
+Portugal;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;90;;
+Portugal;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;379;;
+Portugal;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;92;;
+Portugal;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;3;;
+Portugal;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;5654;;
+Portugal;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;20664;;
+Portugal;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;6523;;
+Portugal;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;96;;
+Portugal;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;2;;
+Portugal;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;292;;
+Portugal;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;738;;
+Portugal;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;488;;
+Portugal;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;7;;
+Portugal;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;406;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1583;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;455;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;2194;;
+Portugal;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;7688;;
+Portugal;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;2218;;
+Portugal;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;42;;
+Portugal;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;9725;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;29869;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;8103;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;210;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;2694;;
+Portugal;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;8326;;
+Portugal;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;2895;;
+Portugal;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;48;;
+Portugal;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;3183;;
+Portugal;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;5371;;
+Portugal;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;1232;;
+Portugal;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;46;;
+Portugal;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;4039;;
+Portugal;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;5682;;
+Portugal;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;1170;;
+Portugal;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;21;;
+Portugal;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;2436;;
+Portugal;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;4494;;
+Portugal;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;842;;
+Portugal;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;19;;
+Portugal;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;859;;
+Portugal;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;2559;;
+Portugal;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;573;;
+Portugal;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;20;;
+Portugal;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;4281;;
+Portugal;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;12106;;
+Portugal;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;3215;;
+Portugal;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;91;;
+Portugal;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;5762;;
+Portugal;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;9595;;
+Portugal;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;2104;;
+Portugal;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;51;;
+Portugal;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;4624;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;26298;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;15174;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;275;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;1791;;
+Portugal;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;10766;;
+Portugal;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;5133;;
+Portugal;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;137;;
+Portugal;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;4921;;
+Portugal;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;19281;;
+Portugal;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;8180;;
+Portugal;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;218;;
+Portugal;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;1193;;
+Portugal;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;2936;;
+Portugal;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;907;;
+Portugal;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;38;;
+Portugal;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;928;;
+Portugal;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;2930;;
+Portugal;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;1167;;
+Portugal;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;44;;
+Portugal;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;6;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;29;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;4;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;15;;
+Portugal;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;89;;
+Portugal;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;59;;
+Portugal;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;4;;
+Portugal;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;153;;
+Portugal;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;506;;
+Portugal;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;263;;
+Portugal;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;18;;
+Portugal;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;8;;
+Portugal;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;36;;
+Portugal;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;23;;
+Portugal;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;2;;
+Portugal;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;4203;;
+Portugal;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;8178;;
+Portugal;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;2868;;
+Portugal;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;123;;
+Portugal;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;98;;
+Portugal;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;153;;
+Portugal;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;92;;
+Portugal;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;;
+Portugal;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;51;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;132;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;54;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;141;;
+Portugal;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;452;;
+Portugal;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;171;;
+Portugal;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;8;;
+Portugal;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;71836;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;103781;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;33030;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;3120;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;47;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;1826;;
+Portugal;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;3933;;
+Portugal;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;793;;
+Portugal;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;29;;
+Portugal;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;2;;
+Portugal;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;39849;;
+Portugal;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;72503;;
+Portugal;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;30593;;
+Portugal;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;1429;;
+Portugal;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;18;;
+Portugal;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;2440;;
+Portugal;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;2793;;
+Portugal;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;250;;
+Portugal;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;4;;
+Portugal;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;501;;
+Portugal;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;804;;
+Portugal;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;160;;
+Portugal;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;11;;
+Portugal;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;188;;
+Portugal;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;723;;
+Portugal;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;549;;
+Portugal;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;125;;
+Portugal;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;3;;
+Portugal;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;768;;
+Portugal;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;1238;;
+Portugal;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;273;;
+Portugal;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;10;;
+Portugal;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;2818;;
+Portugal;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;7256;;
+Portugal;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;1896;;
+Portugal;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;114;;
+Portugal;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;4;;
+Portugal;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;2145;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;6012;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;2250;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;79;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;5309;;
+Portugal;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;23892;;
+Portugal;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;13193;;
+Portugal;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;451;;
+Portugal;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;4;;
+Portugal;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;13218;;
+Portugal;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;60824;;
+Portugal;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;32545;;
+Portugal;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;912;;
+Portugal;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;9;;
+Portugal;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;824;;
+Portugal;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;1128;;
+Portugal;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;418;;
+Portugal;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;33;;
+Portugal;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;12260;;
+Portugal;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;29169;;
+Portugal;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;6866;;
+Portugal;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;472;;
+Portugal;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;2;;
+Portugal;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;336;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1100;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;940;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;190;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;2;;
+Portugal;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Portugal;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;17;;
+Portugal;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;10;;
+Portugal;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;1866;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;9356;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;9547;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;1119;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;20;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;1;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;6;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;2;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;96;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;390;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;262;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;10;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;2;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;8;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;12;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;2;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;26;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;17;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;240;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1099;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;644;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;36;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;1;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;3;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;2;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;9;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;67;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;60;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;1;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;1;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;2;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;4;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;7;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;7;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;2;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;12;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;10;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;10;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;34;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;11;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;261;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;1353;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;665;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;26;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;71;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;998;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;594;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;28;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;15;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;61;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;30;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;4;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;17;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;78;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;48;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;16;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;91;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;39;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;2;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;19;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;68;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;29;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;93;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;414;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;212;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;7;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;11;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;4;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;16856;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;75621;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;23563;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;461;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;8;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;26;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;68;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;25;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;9;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;27;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;9;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;238;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;628;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;236;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;7;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2828;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;9708;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;4101;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;161;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;2;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;31;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;99;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;33;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;739;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;2141;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;933;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;47;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;125;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;217;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;63;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;4;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;2;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;17;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;4;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;1;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;8;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;11;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;79;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;262;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;97;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;2;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;81;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;160;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;78;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;2;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;34;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;192;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;167;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;3;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;33;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;312;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;178;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;10;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;52;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;303;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;481;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;37;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;30;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;90;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;68;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;4;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;108;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;810;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;721;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;51;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;59;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;255;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;150;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;20;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;56;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;23;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;2;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;7383;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;29147;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;10474;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;87;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;2;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;5;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;16;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;11;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;65;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;28;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;45;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;92;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;35;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;650;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2334;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;631;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;13;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;348;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;1596;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;550;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;21;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;25;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;83;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;45;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;3;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;8;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;7;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;2;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;5;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;9;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;1;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;1;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;3;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;1;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;7;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;31;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;14;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;39;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;112;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;28;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;60;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;268;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;75;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;2;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;33;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;144;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;48;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;3;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;63;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;491;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;198;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;3;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;13;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;27;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;5;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;120;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;553;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;170;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;9;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;1;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;1;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;1378;;
+Portugal;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;5475;;
+Portugal;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;4010;;
+Portugal;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;175;;
+Portugal;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;3;;
+Portugal;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;13;;
+Portugal;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;120;;
+Portugal;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;88;;
+Portugal;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;4;;
+Portugal;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;14251;;
+Portugal;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;43859;;
+Portugal;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;16343;;
+Portugal;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;213;;
+Portugal;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;4;;
+Portugal;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;50;;
+Portugal;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;168;;
+Portugal;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;122;;
+Portugal;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;;
+Portugal;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;223;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1026;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;438;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;11;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;301;;
+Portugal;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;1315;;
+Portugal;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;1068;;
+Portugal;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;40;;
+Portugal;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;7231;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;20020;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;9677;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;491;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;371;;
+Portugal;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;1080;;
+Portugal;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;801;;
+Portugal;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;43;;
+Portugal;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;4192;;
+Portugal;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;15009;;
+Portugal;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;9116;;
+Portugal;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;257;;
+Portugal;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;179;;
+Portugal;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;333;;
+Portugal;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;250;;
+Portugal;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;12;;
+Portugal;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;106;;
+Portugal;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;601;;
+Portugal;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;858;;
+Portugal;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;37;;
+Portugal;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;160;;
+Portugal;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;825;;
+Portugal;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;560;;
+Portugal;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;28;;
+Portugal;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;265;;
+Portugal;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;1084;;
+Portugal;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;929;;
+Portugal;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;42;;
+Portugal;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;9176;;
+Portugal;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;48094;;
+Portugal;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;32042;;
+Portugal;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;1281;;
+Portugal;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;8;;
+Portugal;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;1012;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;7788;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;6462;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;376;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;4384;;
+Portugal;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;25996;;
+Portugal;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;14912;;
+Portugal;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;467;;
+Portugal;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;3;;
+Portugal;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;3846;;
+Portugal;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;18501;;
+Portugal;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;10400;;
+Portugal;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;363;;
+Portugal;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;1;;
+Portugal;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;301;;
+Portugal;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;1384;;
+Portugal;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;1000;;
+Portugal;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;43;;
+Portugal;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;950;;
+Portugal;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;4341;;
+Portugal;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;2506;;
+Portugal;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;103;;
+Portugal;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;5407;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;44910;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;36927;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;2120;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;21;;
+Portugal;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Portugal;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;30;;
+Portugal;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;15;;
+Portugal;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;2;;
+Portugal;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Portugal;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;434496;;
+Portugal;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;133461;;
+Portugal;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;331784;;
+Portugal;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;721132;;
+Portugal;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;74750;;
+Portugal;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;803999;;
+Portugal;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;7;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;20;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;8;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;1;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;14626;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;11905;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;2691;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;35;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;61;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;69;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;25;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;1;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;61;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;105;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;47;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;1;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;6;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;13;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;7;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;1;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;4;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;1;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;8;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;43;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;14;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;688;;
+Portugal;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;5842;;
+Portugal;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;5889;;
+Portugal;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;1217;;
+Portugal;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;25;;
+Portugal;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;30;;
+Portugal;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;350;;
+Portugal;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;232;;
+Portugal;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;43;;
+Portugal;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;1998;;
+Portugal;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;21064;;
+Portugal;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;12329;;
+Portugal;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;1764;;
+Portugal;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;28;;
+Portugal;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;69;;
+Portugal;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;543;;
+Portugal;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;405;;
+Portugal;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;24;;
+Portugal;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;109;;
+Portugal;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;776;;
+Portugal;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;343;;
+Portugal;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;40;;
+Portugal;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;1214;;
+Portugal;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;13200;;
+Portugal;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;8214;;
+Portugal;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;777;;
+Portugal;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;12;;
+Portugal;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;4095;;
+Portugal;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;35683;;
+Portugal;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;21624;;
+Portugal;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4238;;
+Portugal;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;74;;
+Portugal;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;380;;
+Portugal;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;3501;;
+Portugal;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;1822;;
+Portugal;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;243;;
+Portugal;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;2285;;
+Portugal;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;13551;;
+Portugal;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;9895;;
+Portugal;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;1350;;
+Portugal;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;8;;
+Portugal;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;877;;
+Portugal;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;4971;;
+Portugal;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;995;;
+Portugal;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;55;;
+Portugal;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;427;;
+Portugal;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;4123;;
+Portugal;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;1470;;
+Portugal;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;130;;
+Portugal;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;4;;
+Portugal;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;214;;
+Portugal;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;1989;;
+Portugal;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;865;;
+Portugal;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;176;;
+Portugal;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;6;;
+Portugal;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;676;;
+Portugal;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;4915;;
+Portugal;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;1466;;
+Portugal;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;179;;
+Portugal;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;506;;
+Portugal;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;3792;;
+Portugal;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;1369;;
+Portugal;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;140;;
+Portugal;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;5;;
+Portugal;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;268;;
+Portugal;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;3233;;
+Portugal;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;2023;;
+Portugal;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;176;;
+Portugal;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Education ;Y15-29;2011;125;;
+Portugal;M;POP;TOTAL;Managers;Education ;Y30-49;2011;1222;;
+Portugal;M;POP;TOTAL;Managers;Education ;Y50-64;2011;666;;
+Portugal;M;POP;TOTAL;Managers;Education ;Y65-84;2011;92;;
+Portugal;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;224;;
+Portugal;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;1674;;
+Portugal;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;835;;
+Portugal;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;134;;
+Portugal;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;220;;
+Portugal;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;1132;;
+Portugal;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;414;;
+Portugal;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;40;;
+Portugal;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;112;;
+Portugal;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;1008;;
+Portugal;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;607;;
+Portugal;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;99;;
+Portugal;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;3;;
+Portugal;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;5;;
+Portugal;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;31;;
+Portugal;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;20;;
+Portugal;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;3;;
+Portugal;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;280;;
+Portugal;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;1092;;
+Portugal;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;369;;
+Portugal;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;42;;
+Portugal;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;61;;
+Portugal;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;204;;
+Portugal;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;55;;
+Portugal;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;6;;
+Portugal;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;4213;;
+Portugal;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;12370;;
+Portugal;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;3045;;
+Portugal;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;277;;
+Portugal;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;6;;
+Portugal;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;417;;
+Portugal;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1165;;
+Portugal;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;745;;
+Portugal;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;30;;
+Portugal;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;204;;
+Portugal;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;786;;
+Portugal;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;239;;
+Portugal;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;23;;
+Portugal;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;3033;;
+Portugal;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;8396;;
+Portugal;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;2186;;
+Portugal;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;209;;
+Portugal;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;4;;
+Portugal;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2602;;
+Portugal;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;7307;;
+Portugal;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1589;;
+Portugal;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;180;;
+Portugal;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;11;;
+Portugal;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;340;;
+Portugal;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;1545;;
+Portugal;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;724;;
+Portugal;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;58;;
+Portugal;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;363;;
+Portugal;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;758;;
+Portugal;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;214;;
+Portugal;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;28;;
+Portugal;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;7520;;
+Portugal;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;16534;;
+Portugal;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;2386;;
+Portugal;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;158;;
+Portugal;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;8;;
+Portugal;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;885;;
+Portugal;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;2903;;
+Portugal;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;831;;
+Portugal;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;91;;
+Portugal;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;108;;
+Portugal;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;472;;
+Portugal;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;154;;
+Portugal;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;35;;
+Portugal;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;11697;;
+Portugal;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;28074;;
+Portugal;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;8165;;
+Portugal;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;1804;;
+Portugal;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;32;;
+Portugal;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;789;;
+Portugal;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;1713;;
+Portugal;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;333;;
+Portugal;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;29;;
+Portugal;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1633;;
+Portugal;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;9650;;
+Portugal;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;4982;;
+Portugal;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;181;;
+Portugal;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;3;;
+Portugal;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;8265;;
+Portugal;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;41101;;
+Portugal;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;18222;;
+Portugal;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;914;;
+Portugal;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;5;;
+Portugal;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;7305;;
+Portugal;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;14549;;
+Portugal;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;9805;;
+Portugal;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;1742;;
+Portugal;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;25;;
+Portugal;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;1873;;
+Portugal;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;4436;;
+Portugal;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;1322;;
+Portugal;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;194;;
+Portugal;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;9;;
+Portugal;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;562;;
+Portugal;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;2211;;
+Portugal;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;899;;
+Portugal;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;627;;
+Portugal;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;30;;
+Portugal;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2;;
+Portugal;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Portugal;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;15;;
+Portugal;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;80;;
+Portugal;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;30;;
+Portugal;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Portugal;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;285;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;870;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;495;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;36;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;100;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;426;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;243;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;11;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;7217;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;26539;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;11974;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;586;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;293;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1086;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1093;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;16;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;620;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2506;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1033;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;35;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;3028;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;15633;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;7429;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;346;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;3;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;6780;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;23816;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;8158;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;677;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;9;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;1238;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;6326;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;2812;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;178;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;730;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;1968;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;657;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;49;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;7464;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;14356;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;2930;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;59;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;4326;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;25594;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;10772;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;585;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;13;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;796;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;3632;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;1749;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;252;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;6;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;4292;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;14680;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;6303;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;1255;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;9;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;1606;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;4331;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;988;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;78;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1498;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;12690;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;7355;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;161;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;958;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;2336;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;714;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;56;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;2007;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;4296;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;1692;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;188;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;3;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;3754;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;4235;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;908;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;69;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;1081;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;2104;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;747;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;105;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;24;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;34;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;2;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;5;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;46;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;36;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;212;;
+Portugal;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;564;;
+Portugal;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;374;;
+Portugal;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;14;;
+Portugal;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;73;;
+Portugal;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;215;;
+Portugal;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;67;;
+Portugal;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;3;;
+Portugal;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;4739;;
+Portugal;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;11330;;
+Portugal;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;4951;;
+Portugal;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;169;;
+Portugal;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;230;;
+Portugal;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;462;;
+Portugal;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;558;;
+Portugal;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;8;;
+Portugal;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;246;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;989;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;481;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;14;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;1218;;
+Portugal;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;3480;;
+Portugal;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;1381;;
+Portugal;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;53;;
+Portugal;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;9392;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;17241;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5690;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;299;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;4;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;3969;;
+Portugal;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;11872;;
+Portugal;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;4259;;
+Portugal;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;79;;
+Portugal;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;2148;;
+Portugal;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;3131;;
+Portugal;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;1089;;
+Portugal;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;109;;
+Portugal;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;2940;;
+Portugal;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;2534;;
+Portugal;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;518;;
+Portugal;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;23;;
+Portugal;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;1030;;
+Portugal;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;1682;;
+Portugal;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;568;;
+Portugal;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;34;;
+Portugal;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;196;;
+Portugal;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;456;;
+Portugal;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;207;;
+Portugal;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;25;;
+Portugal;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;1309;;
+Portugal;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;2553;;
+Portugal;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;891;;
+Portugal;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;58;;
+Portugal;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;3334;;
+Portugal;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;4420;;
+Portugal;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;1080;;
+Portugal;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;65;;
+Portugal;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;2779;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;11900;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;7923;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;213;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;505;;
+Portugal;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;2095;;
+Portugal;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;1230;;
+Portugal;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;41;;
+Portugal;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;1142;;
+Portugal;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;3548;;
+Portugal;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;1815;;
+Portugal;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;79;;
+Portugal;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;581;;
+Portugal;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;1483;;
+Portugal;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;712;;
+Portugal;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;30;;
+Portugal;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;269;;
+Portugal;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;812;;
+Portugal;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;535;;
+Portugal;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;37;;
+Portugal;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;4;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;12;;
+Portugal;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;67;;
+Portugal;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;37;;
+Portugal;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;3;;
+Portugal;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;346;;
+Portugal;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;1163;;
+Portugal;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;818;;
+Portugal;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;65;;
+Portugal;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;21;;
+Portugal;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;65;;
+Portugal;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;45;;
+Portugal;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;1;;
+Portugal;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;2129;;
+Portugal;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;7359;;
+Portugal;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;3774;;
+Portugal;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;317;;
+Portugal;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;3;;
+Portugal;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;60;;
+Portugal;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;161;;
+Portugal;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;92;;
+Portugal;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;5;;
+Portugal;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;80;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;265;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;170;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;8;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;223;;
+Portugal;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;923;;
+Portugal;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;455;;
+Portugal;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;48;;
+Portugal;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;29917;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;61263;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;27530;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4051;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;85;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;1442;;
+Portugal;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;4561;;
+Portugal;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;1587;;
+Portugal;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;104;;
+Portugal;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;26429;;
+Portugal;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;39320;;
+Portugal;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;17516;;
+Portugal;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;1271;;
+Portugal;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;10;;
+Portugal;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;1878;;
+Portugal;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;1959;;
+Portugal;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;257;;
+Portugal;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;7;;
+Portugal;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;285;;
+Portugal;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;639;;
+Portugal;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;154;;
+Portugal;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;8;;
+Portugal;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;140;;
+Portugal;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;588;;
+Portugal;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;505;;
+Portugal;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;109;;
+Portugal;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;5;;
+Portugal;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;350;;
+Portugal;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;813;;
+Portugal;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;219;;
+Portugal;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;17;;
+Portugal;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;8373;;
+Portugal;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;19713;;
+Portugal;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;6517;;
+Portugal;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;336;;
+Portugal;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;10217;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;35610;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;9518;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;115;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;723;;
+Portugal;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;3894;;
+Portugal;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;2885;;
+Portugal;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;203;;
+Portugal;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;2339;;
+Portugal;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;5571;;
+Portugal;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;2379;;
+Portugal;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;118;;
+Portugal;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;835;;
+Portugal;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;1392;;
+Portugal;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;555;;
+Portugal;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;54;;
+Portugal;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;1188;;
+Portugal;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;3547;;
+Portugal;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;1803;;
+Portugal;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;638;;
+Portugal;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;12;;
+Portugal;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;34;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;143;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;130;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;36;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;4;;
+Portugal;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;8;;
+Portugal;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;26;;
+Portugal;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;11;;
+Portugal;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Portugal;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;6467;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;25010;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;21472;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;2990;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;46;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;10;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;28;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;18;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;1;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;486;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;1461;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;930;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;65;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;5;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;30;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;11;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;25;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;150;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;104;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;4;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;52;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;177;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;97;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;5;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;777;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2393;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1529;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;125;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;20;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;59;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;41;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;3;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;148;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;384;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;309;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;21;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;3;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;1;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;7;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;16;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;11;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;3;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;14;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;70;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;36;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;3;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;14;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;41;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;18;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;2;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;2381;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;5556;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;2419;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;140;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;356;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;2043;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;1630;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;61;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;78;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;187;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;155;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;15;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;69;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;248;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;202;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;24;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;160;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;367;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;179;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;18;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;25;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;141;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;84;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;9;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;1;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;3;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;1;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;376;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;1114;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;688;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;31;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;224;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;810;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;445;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;16;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;42832;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;120570;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;56508;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;2141;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;23;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3498;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;7947;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;4169;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;85;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;389;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1711;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;938;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;16;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;38765;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;160657;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;67194;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;1348;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;11;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;19972;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;55564;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;25623;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;1470;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;12;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;1097;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;3652;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;2617;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;63;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;1997;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;4652;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;1863;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;82;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;976;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;1912;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;588;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;8;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;43;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;120;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;85;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;2;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;89;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;488;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;241;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;15;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;522;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;1364;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;425;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;15;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;896;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;2555;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;1010;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;39;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;755;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;5979;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;4993;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;120;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;137;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;469;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;445;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;41;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;216;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;1159;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;882;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;50;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;220;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;796;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;396;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;25;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;753;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;2581;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;1691;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;291;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;5;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;26;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;20;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;1067;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;4045;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;2468;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;165;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;1301;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;4785;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;2044;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;30;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;12158;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;34131;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;17340;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;348;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;3;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;108;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;415;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;216;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;5;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;505;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2848;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1358;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;31;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;4168;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;17449;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;7346;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;152;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;4182;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;16765;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;7415;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;244;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;6782;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;47853;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;22903;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;1850;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;10;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;151;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;571;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;357;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;24;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;42;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;180;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;116;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;8;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;4;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;97;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;61;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;5;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;17;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;72;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;49;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;4;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;82;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;268;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;137;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;12;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;442;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;2029;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;801;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;34;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;505;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;5272;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;4729;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;173;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;61;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;527;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;490;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;48;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;359;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;1967;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;1498;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;113;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;56;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;219;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;156;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;9;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;175;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;543;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;256;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;21;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;6;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;49;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;46;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;7;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;3;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;33;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;25;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;2947;;
+Portugal;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;7217;;
+Portugal;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;4679;;
+Portugal;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;286;;
+Portugal;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;181;;
+Portugal;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;350;;
+Portugal;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;186;;
+Portugal;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;7;;
+Portugal;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;18023;;
+Portugal;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;28379;;
+Portugal;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;12477;;
+Portugal;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;244;;
+Portugal;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;688;;
+Portugal;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;816;;
+Portugal;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;361;;
+Portugal;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;14;;
+Portugal;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1165;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;3271;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1591;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;35;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;14577;;
+Portugal;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;27521;;
+Portugal;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;11523;;
+Portugal;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;250;;
+Portugal;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;13931;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;20323;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;8091;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;472;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;4;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;2115;;
+Portugal;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;4201;;
+Portugal;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;1737;;
+Portugal;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;36;;
+Portugal;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;2029;;
+Portugal;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;2518;;
+Portugal;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;1030;;
+Portugal;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;56;;
+Portugal;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;2;;
+Portugal;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;345;;
+Portugal;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;373;;
+Portugal;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;137;;
+Portugal;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;3;;
+Portugal;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;40;;
+Portugal;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;96;;
+Portugal;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;56;;
+Portugal;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;1;;
+Portugal;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;85;;
+Portugal;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;206;;
+Portugal;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;84;;
+Portugal;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;9;;
+Portugal;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;638;;
+Portugal;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;779;;
+Portugal;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;248;;
+Portugal;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;16;;
+Portugal;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;1976;;
+Portugal;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;3925;;
+Portugal;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;1882;;
+Portugal;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;87;;
+Portugal;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;1450;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;8294;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;7541;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;246;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;348;;
+Portugal;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;1953;;
+Portugal;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;1829;;
+Portugal;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;74;;
+Portugal;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;406;;
+Portugal;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;1006;;
+Portugal;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;589;;
+Portugal;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;37;;
+Portugal;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;480;;
+Portugal;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;1029;;
+Portugal;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;513;;
+Portugal;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;46;;
+Portugal;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;1;;
+Portugal;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;346;;
+Portugal;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;774;;
+Portugal;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;449;;
+Portugal;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;25;;
+Portugal;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;196;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;453;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;256;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;11;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;4;;
+Portugal;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;18;;
+Portugal;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;11;;
+Portugal;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;1;;
+Portugal;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Portugal;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;1151915;;
+Romania;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;724258;;
+Romania;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;1251649;;
+Romania;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;1512393;;
+Romania;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;163570;;
+Romania;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;1551335;;
+Romania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;297;;
+Romania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;1355;;
+Romania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;468;;
+Romania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;4;;
+Romania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;88;;
+Romania;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;362;;
+Romania;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;115;;
+Romania;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;2123;;
+Romania;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;7827;;
+Romania;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;1898;;
+Romania;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;23;;
+Romania;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;94;;
+Romania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;674;;
+Romania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;233;;
+Romania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;133;;
+Romania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;658;;
+Romania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;215;;
+Romania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;3;;
+Romania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;531;;
+Romania;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;2309;;
+Romania;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;595;;
+Romania;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;7;;
+Romania;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;5714;;
+Romania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;15293;;
+Romania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2644;;
+Romania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;65;;
+Romania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;536;;
+Romania;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;1835;;
+Romania;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;282;;
+Romania;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;3;;
+Romania;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;813;;
+Romania;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;1766;;
+Romania;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;315;;
+Romania;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;981;;
+Romania;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;2129;;
+Romania;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;275;;
+Romania;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;6;;
+Romania;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;887;;
+Romania;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;3119;;
+Romania;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;477;;
+Romania;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;173;;
+Romania;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;760;;
+Romania;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;185;;
+Romania;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;1184;;
+Romania;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;3224;;
+Romania;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;579;;
+Romania;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;13;;
+Romania;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;701;;
+Romania;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;1662;;
+Romania;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;272;;
+Romania;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;9;;
+Romania;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;1231;;
+Romania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;7155;;
+Romania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;2343;;
+Romania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;15;;
+Romania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Education ;Y15-29;2011;310;;
+Romania;F;POP;TOTAL;Managers;Education ;Y30-49;2011;2353;;
+Romania;F;POP;TOTAL;Managers;Education ;Y50-64;2011;1067;;
+Romania;F;POP;TOTAL;Managers;Education ;Y65-84;2011;11;;
+Romania;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;460;;
+Romania;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;2828;;
+Romania;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;1198;;
+Romania;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;50;;
+Romania;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;349;;
+Romania;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;755;;
+Romania;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;225;;
+Romania;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;5;;
+Romania;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;746;;
+Romania;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;1999;;
+Romania;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;449;;
+Romania;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;18;;
+Romania;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;145;;
+Romania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;375;;
+Romania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;87;;
+Romania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;5;;
+Romania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;1199;;
+Romania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;3486;;
+Romania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;1350;;
+Romania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;9;;
+Romania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;437;;
+Romania;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;2467;;
+Romania;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;904;;
+Romania;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;3;;
+Romania;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;14175;;
+Romania;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;33836;;
+Romania;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;9854;;
+Romania;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;74;;
+Romania;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1037;;
+Romania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;5857;;
+Romania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1985;;
+Romania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;4;;
+Romania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;757;;
+Romania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2723;;
+Romania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;836;;
+Romania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;3;;
+Romania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;4257;;
+Romania;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;12436;;
+Romania;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;4002;;
+Romania;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;39;;
+Romania;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;16592;;
+Romania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;29218;;
+Romania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;4734;;
+Romania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;173;;
+Romania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;2326;;
+Romania;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;8899;;
+Romania;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;2094;;
+Romania;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;11;;
+Romania;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;960;;
+Romania;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;1525;;
+Romania;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;258;;
+Romania;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;3;;
+Romania;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;12939;;
+Romania;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;13781;;
+Romania;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;1911;;
+Romania;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;42;;
+Romania;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;15807;;
+Romania;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;27003;;
+Romania;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;4280;;
+Romania;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;13;;
+Romania;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;470;;
+Romania;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;1166;;
+Romania;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;226;;
+Romania;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;3;;
+Romania;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;19678;;
+Romania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;35828;;
+Romania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;7831;;
+Romania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;300;;
+Romania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;3133;;
+Romania;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;4440;;
+Romania;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;786;;
+Romania;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;6;;
+Romania;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;11335;;
+Romania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;61811;;
+Romania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;16267;;
+Romania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;74;;
+Romania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;34284;;
+Romania;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;119855;;
+Romania;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;49364;;
+Romania;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;371;;
+Romania;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;22870;;
+Romania;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;93563;;
+Romania;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;27881;;
+Romania;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;735;;
+Romania;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;1909;;
+Romania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;5572;;
+Romania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;1547;;
+Romania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;45;;
+Romania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;3062;;
+Romania;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;6688;;
+Romania;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;1536;;
+Romania;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;70;;
+Romania;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;147;;
+Romania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;330;;
+Romania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;65;;
+Romania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;3;;
+Romania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;583;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;2373;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;1181;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;5;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;182;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;1118;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;438;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;7928;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;21582;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;7237;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;43;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;420;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;3452;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1610;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;418;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2246;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1196;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;2192;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;5451;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;2272;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;19;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;25615;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;42394;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;7392;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;90;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;1848;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;5642;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;1901;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;5;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;1041;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;1786;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;578;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;6;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;6704;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;6878;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;1304;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;10;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;5525;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;10453;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;3100;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;35;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;818;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;1557;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;445;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;6;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;6716;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;13075;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;4668;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;62;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;4296;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;4975;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;1246;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;15;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;4782;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;27890;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;11446;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;61;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;1039;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;4187;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;2140;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;19;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;6536;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;29499;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;8795;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;84;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;1978;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;2254;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;660;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;10;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;2189;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;5437;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;1573;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;242;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;50;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;56;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;99;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;28;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;391;;
+Romania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;1434;;
+Romania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;462;;
+Romania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;4;;
+Romania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;113;;
+Romania;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;834;;
+Romania;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;271;;
+Romania;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;5079;;
+Romania;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;15314;;
+Romania;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;4335;;
+Romania;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;6;;
+Romania;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;202;;
+Romania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1803;;
+Romania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;699;;
+Romania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;288;;
+Romania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1250;;
+Romania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;505;;
+Romania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;1523;;
+Romania;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;4471;;
+Romania;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;1207;;
+Romania;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;7;;
+Romania;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;12957;;
+Romania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;29829;;
+Romania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5766;;
+Romania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;41;;
+Romania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;4043;;
+Romania;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;22031;;
+Romania;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;6793;;
+Romania;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;3;;
+Romania;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;3843;;
+Romania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;4489;;
+Romania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;1081;;
+Romania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;9;;
+Romania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;3200;;
+Romania;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;3437;;
+Romania;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;839;;
+Romania;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;6;;
+Romania;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;3435;;
+Romania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;5772;;
+Romania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;1530;;
+Romania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;3;;
+Romania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;338;;
+Romania;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;537;;
+Romania;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;152;;
+Romania;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;6;;
+Romania;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;2669;;
+Romania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;4590;;
+Romania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;1278;;
+Romania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;14;;
+Romania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;4159;;
+Romania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;4236;;
+Romania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;732;;
+Romania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;7;;
+Romania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;3453;;
+Romania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;15882;;
+Romania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;5805;;
+Romania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;19;;
+Romania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;852;;
+Romania;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;4229;;
+Romania;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;2460;;
+Romania;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;11;;
+Romania;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;1040;;
+Romania;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;2941;;
+Romania;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;1410;;
+Romania;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;9;;
+Romania;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;2850;;
+Romania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;2663;;
+Romania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;854;;
+Romania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;5;;
+Romania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;1055;;
+Romania;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;2097;;
+Romania;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;770;;
+Romania;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;14;;
+Romania;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;116;;
+Romania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;160;;
+Romania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;58;;
+Romania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;290;;
+Romania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;1189;;
+Romania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;394;;
+Romania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;7;;
+Romania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;54;;
+Romania;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;262;;
+Romania;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;124;;
+Romania;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;5426;;
+Romania;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;14931;;
+Romania;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;3585;;
+Romania;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;23;;
+Romania;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;88;;
+Romania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;852;;
+Romania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;339;;
+Romania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;190;;
+Romania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1363;;
+Romania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;510;;
+Romania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;709;;
+Romania;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;2386;;
+Romania;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;698;;
+Romania;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;96349;;
+Romania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;246153;;
+Romania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;48264;;
+Romania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;298;;
+Romania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;4;;
+Romania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;1849;;
+Romania;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;7750;;
+Romania;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;2103;;
+Romania;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;4;;
+Romania;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;27707;;
+Romania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;39236;;
+Romania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;8308;;
+Romania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;36;;
+Romania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;748;;
+Romania;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;1629;;
+Romania;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;409;;
+Romania;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;1072;;
+Romania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;2663;;
+Romania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;813;;
+Romania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;4;;
+Romania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;178;;
+Romania;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;769;;
+Romania;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;469;;
+Romania;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;19;;
+Romania;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;585;;
+Romania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;1447;;
+Romania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;560;;
+Romania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;15;;
+Romania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;3775;;
+Romania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;13417;;
+Romania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;3362;;
+Romania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;17;;
+Romania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;3806;;
+Romania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;16368;;
+Romania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;6463;;
+Romania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;71;;
+Romania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;1006;;
+Romania;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;14986;;
+Romania;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;8101;;
+Romania;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;24;;
+Romania;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;5558;;
+Romania;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;58244;;
+Romania;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;24948;;
+Romania;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;443;;
+Romania;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;4;;
+Romania;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;2574;;
+Romania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;2786;;
+Romania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;862;;
+Romania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;6;;
+Romania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;11612;;
+Romania;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;24047;;
+Romania;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;6042;;
+Romania;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;117;;
+Romania;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;767;;
+Romania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1884;;
+Romania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;721;;
+Romania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;18;;
+Romania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;41;;
+Romania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;108;;
+Romania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;38;;
+Romania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;42276;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;355624;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;345778;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;212934;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;9943;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;113;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;587;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;170;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;19;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;32;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;54;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;13;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;c;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;11;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;12;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;14;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;3;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;20;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;4;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;4;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;3;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;:;c;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;3;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;:;c;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;3;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;51;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;32;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;85;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;665;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;229;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;10;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;30;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;479;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;266;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;38;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;13;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;71;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;44;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;9;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;5;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;34;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;15;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;11;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;11;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;45;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;30;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;54;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;232;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;127;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;24;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1162;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2940;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1624;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;424;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;9;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;235;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;843;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;211;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;7;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;86;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;961;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;239;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;48493;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;180899;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;36843;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;97;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;5;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;148;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1767;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;751;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;4;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;66;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;593;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;324;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;1885;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;6793;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;2000;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;29;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1251;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4150;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1057;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;124;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;1612;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;595;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;774;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;2168;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;560;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;465;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;1571;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;444;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;18;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;56;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;11;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;5;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;20;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;13;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;142;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;546;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;214;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;234;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;496;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;139;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;164;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;756;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;387;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;46;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;390;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;274;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;5;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;75;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;533;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;327;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;4;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;90;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;373;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;178;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;3;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;454;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;1544;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;530;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;8;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;c;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;4;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;8;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;c;
+Romania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;6;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;89;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;336;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;90;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;3;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;128;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;1448;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;400;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;23751;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;82163;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;14995;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;36;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;19;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;610;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;296;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;41;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;190;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;69;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;163;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;587;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;150;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;565;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1493;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;309;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;1012;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;4219;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;1051;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;4;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;23;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;60;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;17;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;25;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;85;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;15;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;5;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;12;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;:;c;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;4;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;12;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;6;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;43;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;186;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;72;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;130;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;330;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;94;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;216;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;688;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;208;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;32;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;279;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;137;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;43;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;616;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;384;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;31;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;68;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;20;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;165;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;536;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;133;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;c;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;5;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;c;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;18796;;
+Romania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;37788;;
+Romania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;25144;;
+Romania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;33457;;
+Romania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;2577;;
+Romania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;246;;
+Romania;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;636;;
+Romania;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;189;;
+Romania;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;:;c;
+Romania;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;18449;;
+Romania;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;45544;;
+Romania;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;8803;;
+Romania;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;56;;
+Romania;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;108;;
+Romania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;926;;
+Romania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;332;;
+Romania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1318;;
+Romania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;4989;;
+Romania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1319;;
+Romania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;5;;
+Romania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;2150;;
+Romania;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;6959;;
+Romania;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;1950;;
+Romania;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;22;;
+Romania;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;6531;;
+Romania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;14768;;
+Romania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;4085;;
+Romania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;41;;
+Romania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;679;;
+Romania;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;2930;;
+Romania;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;1084;;
+Romania;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;4;;
+Romania;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;3458;;
+Romania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;6931;;
+Romania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;2075;;
+Romania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;11;;
+Romania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;300;;
+Romania;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;1061;;
+Romania;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;387;;
+Romania;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;4;;
+Romania;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;102;;
+Romania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;625;;
+Romania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;349;;
+Romania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;7;;
+Romania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;111;;
+Romania;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;716;;
+Romania;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;398;;
+Romania;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;9;;
+Romania;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;411;;
+Romania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;1413;;
+Romania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;648;;
+Romania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;6;;
+Romania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;3;;
+Romania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;2329;;
+Romania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;8767;;
+Romania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;2945;;
+Romania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;19;;
+Romania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;1663;;
+Romania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;7281;;
+Romania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;3818;;
+Romania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;46;;
+Romania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;1065;;
+Romania;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;12725;;
+Romania;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;7870;;
+Romania;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;31;;
+Romania;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;460;;
+Romania;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;5302;;
+Romania;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;3020;;
+Romania;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;15;;
+Romania;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;369;;
+Romania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;1635;;
+Romania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;865;;
+Romania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;10;;
+Romania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;2226;;
+Romania;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;8434;;
+Romania;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;3847;;
+Romania;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;90;;
+Romania;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;:;c;
+Romania;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;19329;;
+Romania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;37713;;
+Romania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;10433;;
+Romania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;458;;
+Romania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;9;;
+Romania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;11;;
+Romania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;73;;
+Romania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;25;;
+Romania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Romania;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;1007398;;
+Romania;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;464449;;
+Romania;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;787231;;
+Romania;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;852650;;
+Romania;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;74415;;
+Romania;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;1638311;;
+Romania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;752;;
+Romania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;4084;;
+Romania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;2056;;
+Romania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;81;;
+Romania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;95;;
+Romania;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;854;;
+Romania;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;525;;
+Romania;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;13;;
+Romania;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;2378;;
+Romania;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;11603;;
+Romania;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;4994;;
+Romania;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;153;;
+Romania;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;143;;
+Romania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1232;;
+Romania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;812;;
+Romania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;11;;
+Romania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;226;;
+Romania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1236;;
+Romania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;881;;
+Romania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;18;;
+Romania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;1211;;
+Romania;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;6304;;
+Romania;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;3203;;
+Romania;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;92;;
+Romania;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;5889;;
+Romania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;23259;;
+Romania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;6516;;
+Romania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;172;;
+Romania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;830;;
+Romania;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;4010;;
+Romania;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;1344;;
+Romania;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;21;;
+Romania;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;723;;
+Romania;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;2033;;
+Romania;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;671;;
+Romania;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;25;;
+Romania;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;1056;;
+Romania;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;3510;;
+Romania;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;705;;
+Romania;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;26;;
+Romania;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;444;;
+Romania;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;2078;;
+Romania;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;510;;
+Romania;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;16;;
+Romania;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;176;;
+Romania;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;1052;;
+Romania;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;378;;
+Romania;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;19;;
+Romania;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;840;;
+Romania;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;3572;;
+Romania;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;1104;;
+Romania;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;86;;
+Romania;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;544;;
+Romania;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;2172;;
+Romania;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;728;;
+Romania;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;21;;
+Romania;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;901;;
+Romania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;8145;;
+Romania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;4514;;
+Romania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;175;;
+Romania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Education ;Y15-29;2011;171;;
+Romania;M;POP;TOTAL;Managers;Education ;Y30-49;2011;1474;;
+Romania;M;POP;TOTAL;Managers;Education ;Y50-64;2011;922;;
+Romania;M;POP;TOTAL;Managers;Education ;Y65-84;2011;32;;
+Romania;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;197;;
+Romania;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;1495;;
+Romania;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;851;;
+Romania;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;48;;
+Romania;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;375;;
+Romania;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;1350;;
+Romania;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;532;;
+Romania;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;37;;
+Romania;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;517;;
+Romania;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;2270;;
+Romania;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;921;;
+Romania;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;54;;
+Romania;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;118;;
+Romania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;427;;
+Romania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;193;;
+Romania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;18;;
+Romania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;2915;;
+Romania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;10663;;
+Romania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;5545;;
+Romania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;86;;
+Romania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;713;;
+Romania;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;4065;;
+Romania;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;2549;;
+Romania;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;19;;
+Romania;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;15514;;
+Romania;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;40984;;
+Romania;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;21118;;
+Romania;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;333;;
+Romania;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1640;;
+Romania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;7707;;
+Romania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;4727;;
+Romania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;38;;
+Romania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;689;;
+Romania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;2194;;
+Romania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1617;;
+Romania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;13;;
+Romania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;8651;;
+Romania;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;24928;;
+Romania;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;12973;;
+Romania;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;345;;
+Romania;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;3;;
+Romania;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;8700;;
+Romania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;19408;;
+Romania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;4806;;
+Romania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;143;;
+Romania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;;
+Romania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;2505;;
+Romania;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;12714;;
+Romania;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;5161;;
+Romania;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;56;;
+Romania;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;391;;
+Romania;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;877;;
+Romania;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;237;;
+Romania;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;10;;
+Romania;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;18350;;
+Romania;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;24152;;
+Romania;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;4104;;
+Romania;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;95;;
+Romania;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;3;;
+Romania;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;6399;;
+Romania;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;11641;;
+Romania;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;2728;;
+Romania;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;54;;
+Romania;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;252;;
+Romania;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;724;;
+Romania;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;251;;
+Romania;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;10;;
+Romania;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;11972;;
+Romania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;27870;;
+Romania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;11284;;
+Romania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;883;;
+Romania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;1825;;
+Romania;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;3441;;
+Romania;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;1054;;
+Romania;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;27;;
+Romania;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;9750;;
+Romania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;48477;;
+Romania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;15967;;
+Romania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;220;;
+Romania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;7514;;
+Romania;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;30689;;
+Romania;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;26180;;
+Romania;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;965;;
+Romania;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;7;;
+Romania;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;5882;;
+Romania;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;19433;;
+Romania;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;9269;;
+Romania;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;895;;
+Romania;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;4;;
+Romania;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;1889;;
+Romania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;4773;;
+Romania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;1942;;
+Romania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;87;;
+Romania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;5313;;
+Romania;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;18215;;
+Romania;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;7634;;
+Romania;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;536;;
+Romania;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;8;;
+Romania;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;56;;
+Romania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;144;;
+Romania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;39;;
+Romania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;614;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;2504;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;1393;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;15;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;265;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;2212;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;1271;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;7;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;8343;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;55756;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;11120;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;96;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;605;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;5131;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;3708;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;13;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;323;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1817;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;1425;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;9;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;2443;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;6472;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;34442;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;103;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;28466;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;44655;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;6614;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;119;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;2887;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;8119;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;3896;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;18;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;728;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;973;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;256;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;3;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;10214;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;14283;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;2760;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;39;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;2855;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;6060;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;2055;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;50;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;784;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;1645;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;393;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;7;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;4532;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;8592;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;3610;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;109;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;2617;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;4717;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;1560;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;38;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;6882;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;27912;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;9001;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;175;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;637;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;1438;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;1353;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;17;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;1928;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;6649;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;2435;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;31;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;3644;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;3872;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;1394;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;36;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;1848;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;4054;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;1461;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;107;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;6;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;30;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;57;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;14;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;248;;
+Romania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;810;;
+Romania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;399;;
+Romania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;5;;
+Romania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;81;;
+Romania;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;405;;
+Romania;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;167;;
+Romania;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;4403;;
+Romania;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;8885;;
+Romania;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;2874;;
+Romania;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;13;;
+Romania;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;174;;
+Romania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;773;;
+Romania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;419;;
+Romania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;3;;
+Romania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;273;;
+Romania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;782;;
+Romania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;466;;
+Romania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;844;;
+Romania;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;2321;;
+Romania;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;835;;
+Romania;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;12;;
+Romania;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;9410;;
+Romania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;16708;;
+Romania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;4068;;
+Romania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;27;;
+Romania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;3669;;
+Romania;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;17735;;
+Romania;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;5385;;
+Romania;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;15;;
+Romania;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;1845;;
+Romania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;3167;;
+Romania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;1061;;
+Romania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;26;;
+Romania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;2375;;
+Romania;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;2248;;
+Romania;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;463;;
+Romania;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;1025;;
+Romania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;1364;;
+Romania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;354;;
+Romania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;5;;
+Romania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;104;;
+Romania;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;173;;
+Romania;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;69;;
+Romania;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;4;;
+Romania;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;1054;;
+Romania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;1292;;
+Romania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;414;;
+Romania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;9;;
+Romania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;1907;;
+Romania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;2311;;
+Romania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;428;;
+Romania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;7;;
+Romania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;5510;;
+Romania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;23862;;
+Romania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;4314;;
+Romania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;54;;
+Romania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;150;;
+Romania;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;554;;
+Romania;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;371;;
+Romania;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;7;;
+Romania;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;248;;
+Romania;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;700;;
+Romania;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;418;;
+Romania;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;1265;;
+Romania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;1263;;
+Romania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;395;;
+Romania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;6;;
+Romania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;422;;
+Romania;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;775;;
+Romania;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;336;;
+Romania;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;16;;
+Romania;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;47;;
+Romania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;89;;
+Romania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;31;;
+Romania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;571;;
+Romania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;2801;;
+Romania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;1395;;
+Romania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;30;;
+Romania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;111;;
+Romania;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;580;;
+Romania;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;262;;
+Romania;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;3546;;
+Romania;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;11327;;
+Romania;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;4744;;
+Romania;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;69;;
+Romania;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;91;;
+Romania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;579;;
+Romania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;227;;
+Romania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;215;;
+Romania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;713;;
+Romania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;344;;
+Romania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;1327;;
+Romania;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;5953;;
+Romania;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;2229;;
+Romania;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;28;;
+Romania;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;43678;;
+Romania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;93509;;
+Romania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;28231;;
+Romania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;403;;
+Romania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;3;;
+Romania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;1364;;
+Romania;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;5669;;
+Romania;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;1517;;
+Romania;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;12;;
+Romania;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;21198;;
+Romania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;16742;;
+Romania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;2945;;
+Romania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;21;;
+Romania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;664;;
+Romania;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;1237;;
+Romania;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;418;;
+Romania;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;4;;
+Romania;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;385;;
+Romania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;1068;;
+Romania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;471;;
+Romania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;9;;
+Romania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;156;;
+Romania;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;629;;
+Romania;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;381;;
+Romania;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;32;;
+Romania;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;607;;
+Romania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;1756;;
+Romania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;750;;
+Romania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;14;;
+Romania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;28880;;
+Romania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;73028;;
+Romania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;25231;;
+Romania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;123;;
+Romania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;15010;;
+Romania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;47332;;
+Romania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;5240;;
+Romania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;23;;
+Romania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;591;;
+Romania;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;5608;;
+Romania;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;4450;;
+Romania;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;61;;
+Romania;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;1283;;
+Romania;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;7443;;
+Romania;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;4024;;
+Romania;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;41;;
+Romania;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;1146;;
+Romania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;1924;;
+Romania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;872;;
+Romania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;12;;
+Romania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;2311;;
+Romania;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;5121;;
+Romania;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;2171;;
+Romania;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;146;;
+Romania;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;3;;
+Romania;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;57;;
+Romania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;154;;
+Romania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;71;;
+Romania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;5;;
+Romania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;38;;
+Romania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;71;;
+Romania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;27;;
+Romania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;3;;
+Romania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;108487;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;298561;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;293483;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;334290;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;11394;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;527;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;1570;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;444;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;21;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;68;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;157;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;70;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;10;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;20;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;7;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;20;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;48;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;27;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;18;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;81;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;31;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;4;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;234;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;585;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;218;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;12;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;54;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;289;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;198;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;5;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;11;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;30;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;30;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;4;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;11;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;13;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;10;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;52;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;163;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;71;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;4;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;88;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;312;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;164;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;3254;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;8176;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3670;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;477;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;15;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;2933;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;15580;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;6527;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;52;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;1124;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;14033;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;4010;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;3;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;77897;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;232867;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;106910;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;329;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3715;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;28630;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;15464;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;12;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1078;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;9622;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;6892;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;16;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;77463;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;206345;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;61938;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;387;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;14896;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;34432;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;12314;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;52;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;3092;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;20842;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;10193;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;21;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;663;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;1695;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;730;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;1882;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;5138;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;1662;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;6;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;35;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;183;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;99;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;74;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;393;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;256;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;3;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;851;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;2591;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;1535;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;13;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;1354;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;3656;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;1692;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;3;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;829;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;4478;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;3000;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;5;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;131;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;2263;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;3090;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;9;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;242;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;2248;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;2677;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;367;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;1234;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;822;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;8;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;2121;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;7382;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;3678;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;54;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;44;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;121;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;75;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;3293;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;15702;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;5337;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;84;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;1329;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;19081;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;4177;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;4;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;44673;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;109665;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;31887;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;103;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;354;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;4372;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2302;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;4;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;885;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;5051;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2496;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;5;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;5610;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;22174;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;9171;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;36;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;11112;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;30193;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;7022;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;36;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;33043;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;139812;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;38648;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;219;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;894;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;1511;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;490;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;4;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;526;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;1498;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;484;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;40;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;71;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;524;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;203;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;5;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;57;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;277;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;113;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;5;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;465;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;1986;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;790;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;7;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;1471;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;3904;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;1271;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;4;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;2300;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;11520;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;5057;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;17;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;223;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;2749;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;1900;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;16;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;431;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;4990;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;3054;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;9;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;179;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;666;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;325;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;3;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;847;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;2617;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;905;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;18;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;c;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;123;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;346;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;138;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;54929;;
+Romania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;93013;;
+Romania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;43792;;
+Romania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;21889;;
+Romania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;1150;;
+Romania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;588;;
+Romania;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;2117;;
+Romania;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;626;;
+Romania;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;23179;;
+Romania;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;38210;;
+Romania;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;11178;;
+Romania;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;81;;
+Romania;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;334;;
+Romania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1366;;
+Romania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;603;;
+Romania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;3671;;
+Romania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;9588;;
+Romania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;3408;;
+Romania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;17;;
+Romania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;31969;;
+Romania;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;55097;;
+Romania;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;13436;;
+Romania;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;148;;
+Romania;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;17010;;
+Romania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;22331;;
+Romania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5984;;
+Romania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;68;;
+Romania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;3559;;
+Romania;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;6851;;
+Romania;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;2175;;
+Romania;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;28;;
+Romania;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;1942;;
+Romania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;1959;;
+Romania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;629;;
+Romania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;13;;
+Romania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;581;;
+Romania;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;729;;
+Romania;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;260;;
+Romania;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;8;;
+Romania;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;62;;
+Romania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;209;;
+Romania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;86;;
+Romania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;3;;
+Romania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;137;;
+Romania;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;320;;
+Romania;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;182;;
+Romania;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;5;;
+Romania;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;787;;
+Romania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;1265;;
+Romania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;521;;
+Romania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;18;;
+Romania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;5589;;
+Romania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;12569;;
+Romania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;5126;;
+Romania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;32;;
+Romania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;2156;;
+Romania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;8923;;
+Romania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;4959;;
+Romania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;36;;
+Romania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;:;c;
+Romania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;281;;
+Romania;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;2731;;
+Romania;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;2528;;
+Romania;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;14;;
+Romania;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;194;;
+Romania;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;1397;;
+Romania;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;887;;
+Romania;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;5;;
+Romania;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;561;;
+Romania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;1110;;
+Romania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;540;;
+Romania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;7;;
+Romania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;2953;;
+Romania;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;5436;;
+Romania;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;1967;;
+Romania;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;67;;
+Romania;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;2257;;
+Romania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3979;;
+Romania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1580;;
+Romania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;202;;
+Romania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;7;;
+Romania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;17;;
+Romania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;51;;
+Romania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;63;;
+Romania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;c;
+Romania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Romania;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;:;;
+Sweden;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;:;;
+Sweden;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Education ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Education ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Education ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Education ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;:;;
+Sweden;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Sweden;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;:;;
+Sweden;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;:;;
+Sweden;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Education ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Education ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Education ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Education ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;:;;
+Sweden;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Sweden;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;116445;;
+Slovenia;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;31268;;
+Slovenia;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;124752;;
+Slovenia;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;178275;;
+Slovenia;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;26163;;
+Slovenia;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;141151;;
+Slovenia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;1;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;2;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;1;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;1;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;307;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;608;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;46;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;1;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;9;;
+Slovenia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;49;;
+Slovenia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;18;;
+Slovenia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;2;;
+Slovenia;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;15;;
+Slovenia;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;5;;
+Slovenia;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;129;;
+Slovenia;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;1415;;
+Slovenia;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;569;;
+Slovenia;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3;;
+Slovenia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;58;;
+Slovenia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;18;;
+Slovenia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;3;;
+Slovenia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;101;;
+Slovenia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;29;;
+Slovenia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Construction ;Y15-29;2011;74;;
+Slovenia;F;POP;TOTAL;Managers;Construction ;Y30-49;2011;436;;
+Slovenia;F;POP;TOTAL;Managers;Construction ;Y50-64;2011;131;;
+Slovenia;F;POP;TOTAL;Managers;Construction ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;266;;
+Slovenia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2051;;
+Slovenia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;577;;
+Slovenia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4;;
+Slovenia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;42;;
+Slovenia;F;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;415;;
+Slovenia;F;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;134;;
+Slovenia;F;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;85;;
+Slovenia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;527;;
+Slovenia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;145;;
+Slovenia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;76;;
+Slovenia;F;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;512;;
+Slovenia;F;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;111;;
+Slovenia;F;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;25;;
+Slovenia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;635;;
+Slovenia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;226;;
+Slovenia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;17;;
+Slovenia;F;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;193;;
+Slovenia;F;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;78;;
+Slovenia;F;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;282;;
+Slovenia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;1795;;
+Slovenia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;542;;
+Slovenia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;99;;
+Slovenia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;390;;
+Slovenia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;73;;
+Slovenia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;27;;
+Slovenia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;660;;
+Slovenia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;361;;
+Slovenia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Education ;Y15-29;2011;48;;
+Slovenia;F;POP;TOTAL;Managers;Education ;Y30-49;2011;603;;
+Slovenia;F;POP;TOTAL;Managers;Education ;Y50-64;2011;340;;
+Slovenia;F;POP;TOTAL;Managers;Education ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;24;;
+Slovenia;F;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;337;;
+Slovenia;F;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;199;;
+Slovenia;F;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;39;;
+Slovenia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;261;;
+Slovenia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;86;;
+Slovenia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;58;;
+Slovenia;F;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;324;;
+Slovenia;F;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;106;;
+Slovenia;F;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Slovenia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2;;
+Slovenia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;15;;
+Slovenia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;103;;
+Slovenia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;19;;
+Slovenia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;21;;
+Slovenia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;47;;
+Slovenia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;18;;
+Slovenia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;550;;
+Slovenia;F;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;3294;;
+Slovenia;F;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;773;;
+Slovenia;F;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;48;;
+Slovenia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;232;;
+Slovenia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;59;;
+Slovenia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;38;;
+Slovenia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;190;;
+Slovenia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;33;;
+Slovenia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Construction ;Y15-29;2011;141;;
+Slovenia;F;POP;TOTAL;Professionals;Construction ;Y30-49;2011;410;;
+Slovenia;F;POP;TOTAL;Professionals;Construction ;Y50-64;2011;108;;
+Slovenia;F;POP;TOTAL;Professionals;Construction ;Y65-84;2011;3;;
+Slovenia;F;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;558;;
+Slovenia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2115;;
+Slovenia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;442;;
+Slovenia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4;;
+Slovenia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;69;;
+Slovenia;F;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;575;;
+Slovenia;F;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;145;;
+Slovenia;F;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;137;;
+Slovenia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;383;;
+Slovenia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;138;;
+Slovenia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;488;;
+Slovenia;F;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;2217;;
+Slovenia;F;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;385;;
+Slovenia;F;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;398;;
+Slovenia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;2207;;
+Slovenia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;467;;
+Slovenia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;44;;
+Slovenia;F;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;163;;
+Slovenia;F;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;40;;
+Slovenia;F;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;2129;;
+Slovenia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;5787;;
+Slovenia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;993;;
+Slovenia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;8;;
+Slovenia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;190;;
+Slovenia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;387;;
+Slovenia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;74;;
+Slovenia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;1380;;
+Slovenia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;7262;;
+Slovenia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;1996;;
+Slovenia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;15;;
+Slovenia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Education ;Y15-29;2011;6637;;
+Slovenia;F;POP;TOTAL;Professionals;Education ;Y30-49;2011;24595;;
+Slovenia;F;POP;TOTAL;Professionals;Education ;Y50-64;2011;8160;;
+Slovenia;F;POP;TOTAL;Professionals;Education ;Y65-84;2011;34;;
+Slovenia;F;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;2437;;
+Slovenia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;8545;;
+Slovenia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;3171;;
+Slovenia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;95;;
+Slovenia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;448;;
+Slovenia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;2257;;
+Slovenia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;506;;
+Slovenia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;5;;
+Slovenia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;156;;
+Slovenia;F;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;458;;
+Slovenia;F;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;95;;
+Slovenia;F;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3;;
+Slovenia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;2;;
+Slovenia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;29;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;215;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;60;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;13;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;93;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;47;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;1285;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;7367;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;2283;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;7;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;72;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;319;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;143;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;65;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;395;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;142;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;321;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;1452;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;443;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1914;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;7814;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1887;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;3;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;365;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;1784;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;556;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;300;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;1134;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;365;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;456;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;1723;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;390;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;912;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;3983;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;1154;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;97;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;493;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;175;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;1246;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;4896;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;1270;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;3;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;425;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;961;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;196;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;483;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;4244;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;1592;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;4;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;328;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;1508;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;569;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;3080;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;9272;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;3280;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;14;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;178;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;665;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;152;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;188;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;642;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;207;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;5;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;8;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;5;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;5;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;33;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;155;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;71;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;14;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;67;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;35;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;583;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;3846;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;1732;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;4;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;46;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;314;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;192;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;52;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;367;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;155;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;431;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;1612;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;602;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1068;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4005;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1353;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;454;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;2745;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;906;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;4;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;307;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;758;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;217;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;250;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;1027;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;325;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;796;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;3672;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;1843;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;3;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;63;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;266;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;119;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;600;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;2301;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;919;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;437;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;798;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;224;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;832;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;4973;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;1521;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;169;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;1069;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;531;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;405;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;1993;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;912;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;183;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;894;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;345;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;3;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;124;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;502;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;190;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;3;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;3;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;3;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;66;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;236;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;70;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;17;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;14;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;7;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;747;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;2210;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;635;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;5;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;29;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;22;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;17;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;48;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;12;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;192;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;398;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;78;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;8539;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;23667;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;5922;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;229;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;571;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;131;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;3223;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;7181;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;1826;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;68;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;179;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;64;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;39;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;150;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;71;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;42;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;107;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;22;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;189;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;464;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;110;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;344;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;1036;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;260;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;475;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;719;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;109;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;313;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;1966;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;941;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;1064;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;4421;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;1645;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;8;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;195;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;454;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;99;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;1794;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;3708;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;757;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;24;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;23;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;11;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;398;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;4191;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;2765;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;18;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;1;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;21;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;107;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;41;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;12;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;11;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;59;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;12;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;3;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;16;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;2;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;41;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;267;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;66;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;6;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;5;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;1;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;2;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;24;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;9;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;1;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;1;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;5;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;25;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;10;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;10;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;63;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;28;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;14;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;8;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;3;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;9;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;1;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;19;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;6;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;4;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;15;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;5;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;3;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;23;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;5;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;5;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;20;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;5;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;8;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;46;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;12;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;1;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;2;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;1013;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;10146;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;2994;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;7;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;7;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;6;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;11;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;2;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;92;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;255;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;68;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;104;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;659;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;171;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;8;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;58;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;17;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;83;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;221;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;55;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;5;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;63;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;24;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;2;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;29;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;17;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;1;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;15;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;3;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;34;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;208;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;64;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;28;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;83;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;32;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;7;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;69;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;28;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;8;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;76;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;29;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;10;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;109;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;34;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;10;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;73;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;25;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;10;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;119;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;43;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;1;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;21;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;8;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;5;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;1;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;1630;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;13292;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;4491;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;1;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;2;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;16;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;8;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;14;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;63;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;30;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;38;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;266;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;129;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;77;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;318;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;80;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;5;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;36;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;30;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;2;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;9;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;4;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;1;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;6;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;9;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;1;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;4;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;7;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;43;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;165;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;44;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;164;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;329;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;77;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;13;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;6;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;8;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;63;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;52;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;18;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;268;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;189;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;7;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;29;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;4;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;6;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;109;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;55;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;44;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;419;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;181;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;3;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;7;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;22;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;12;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;1806;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;9989;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;3591;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;47;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;38;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;50;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;353;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;132;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;134;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;617;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;318;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;218;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1242;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;587;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;31;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;198;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;99;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;708;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;3474;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;1484;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;5;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;5;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;49;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;40;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;25;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;134;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;76;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;12;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;144;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;130;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;368;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;937;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;407;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;1352;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;5435;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;2511;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;3;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;29;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;593;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;339;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;230;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;4016;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;2134;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;5;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;472;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;4133;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;1552;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;5;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;32;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;345;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;187;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;76;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;480;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;230;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;197;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;212;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;71;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;151;;
+Slovenia;F;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;702;;
+Slovenia;F;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;170;;
+Slovenia;F;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;2;;
+Slovenia;F;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Slovenia;F;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;105151;;
+Slovenia;M;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;24214;;
+Slovenia;M;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;88227;;
+Slovenia;M;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;125212;;
+Slovenia;M;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;7935;;
+Slovenia;M;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;149702;;
+Slovenia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;2;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;1;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;1;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;1;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;2033;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;3897;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;533;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;1;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;9;;
+Slovenia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;87;;
+Slovenia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;82;;
+Slovenia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;3;;
+Slovenia;M;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;32;;
+Slovenia;M;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;39;;
+Slovenia;M;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;284;;
+Slovenia;M;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;4047;;
+Slovenia;M;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;2347;;
+Slovenia;M;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;24;;
+Slovenia;M;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;3;;
+Slovenia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;153;;
+Slovenia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;129;;
+Slovenia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;4;;
+Slovenia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;18;;
+Slovenia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;224;;
+Slovenia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;145;;
+Slovenia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Construction ;Y15-29;2011;433;;
+Slovenia;M;POP;TOTAL;Managers;Construction ;Y30-49;2011;2153;;
+Slovenia;M;POP;TOTAL;Managers;Construction ;Y50-64;2011;1055;;
+Slovenia;M;POP;TOTAL;Managers;Construction ;Y65-84;2011;7;;
+Slovenia;M;POP;TOTAL;Managers;Construction ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Construction ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;412;;
+Slovenia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;4138;;
+Slovenia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1918;;
+Slovenia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;26;;
+Slovenia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Transportation and storage ;Y15-29;2011;90;;
+Slovenia;M;POP;TOTAL;Managers;Transportation and storage ;Y30-49;2011;864;;
+Slovenia;M;POP;TOTAL;Managers;Transportation and storage ;Y50-64;2011;422;;
+Slovenia;M;POP;TOTAL;Managers;Transportation and storage ;Y65-84;2011;7;;
+Slovenia;M;POP;TOTAL;Managers;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y15-29;2011;130;;
+Slovenia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y30-49;2011;852;;
+Slovenia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y50-64;2011;327;;
+Slovenia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y65-84;2011;4;;
+Slovenia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Information and communication ;Y15-29;2011;213;;
+Slovenia;M;POP;TOTAL;Managers;Information and communication ;Y30-49;2011;1496;;
+Slovenia;M;POP;TOTAL;Managers;Information and communication ;Y50-64;2011;446;;
+Slovenia;M;POP;TOTAL;Managers;Information and communication ;Y65-84;2011;3;;
+Slovenia;M;POP;TOTAL;Managers;Information and communication ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Information and communication ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y15-29;2011;35;;
+Slovenia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y30-49;2011;811;;
+Slovenia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y50-64;2011;329;;
+Slovenia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y65-84;2011;6;;
+Slovenia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Real estate activities ;Y15-29;2011;30;;
+Slovenia;M;POP;TOTAL;Managers;Real estate activities ;Y30-49;2011;290;;
+Slovenia;M;POP;TOTAL;Managers;Real estate activities ;Y50-64;2011;174;;
+Slovenia;M;POP;TOTAL;Managers;Real estate activities ;Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Managers;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y15-29;2011;342;;
+Slovenia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y30-49;2011;2860;;
+Slovenia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y50-64;2011;1449;;
+Slovenia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y65-84;2011;25;;
+Slovenia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y15-29;2011;93;;
+Slovenia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y30-49;2011;528;;
+Slovenia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y50-64;2011;226;;
+Slovenia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y65-84;2011;5;;
+Slovenia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Not applicable ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Not applicable ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Not applicable ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Not applicable ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Not applicable ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Not applicable ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y15-29;2011;10;;
+Slovenia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y30-49;2011;484;;
+Slovenia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y50-64;2011;539;;
+Slovenia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y65-84;2011;20;;
+Slovenia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Education ;Y15-29;2011;47;;
+Slovenia;M;POP;TOTAL;Managers;Education ;Y30-49;2011;344;;
+Slovenia;M;POP;TOTAL;Managers;Education ;Y50-64;2011;281;;
+Slovenia;M;POP;TOTAL;Managers;Education ;Y65-84;2011;7;;
+Slovenia;M;POP;TOTAL;Managers;Education ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Education ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Human health and social work activities ;Y15-29;2011;7;;
+Slovenia;M;POP;TOTAL;Managers;Human health and social work activities ;Y30-49;2011;176;;
+Slovenia;M;POP;TOTAL;Managers;Human health and social work activities ;Y50-64;2011;171;;
+Slovenia;M;POP;TOTAL;Managers;Human health and social work activities ;Y65-84;2011;15;;
+Slovenia;M;POP;TOTAL;Managers;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y15-29;2011;31;;
+Slovenia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y30-49;2011;346;;
+Slovenia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y50-64;2011;183;;
+Slovenia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y65-84;2011;8;;
+Slovenia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Other service activities ;Y15-29;2011;34;;
+Slovenia;M;POP;TOTAL;Managers;Other service activities ;Y30-49;2011;306;;
+Slovenia;M;POP;TOTAL;Managers;Other service activities ;Y50-64;2011;179;;
+Slovenia;M;POP;TOTAL;Managers;Other service activities ;Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Managers;Other service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Other service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;1;;
+Slovenia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;5;;
+Slovenia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Not stated ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Not stated ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Not stated ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Not stated ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Not stated ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Managers;Not stated ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y15-29;2011;21;;
+Slovenia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y30-49;2011;67;;
+Slovenia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y50-64;2011;32;;
+Slovenia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y15-29;2011;17;;
+Slovenia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y30-49;2011;126;;
+Slovenia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y50-64;2011;51;;
+Slovenia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Manufacturing ;Y15-29;2011;1754;;
+Slovenia;M;POP;TOTAL;Professionals;Manufacturing ;Y30-49;2011;6309;;
+Slovenia;M;POP;TOTAL;Professionals;Manufacturing ;Y50-64;2011;2207;;
+Slovenia;M;POP;TOTAL;Professionals;Manufacturing ;Y65-84;2011;5;;
+Slovenia;M;POP;TOTAL;Professionals;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;149;;
+Slovenia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;758;;
+Slovenia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;250;;
+Slovenia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;9;;
+Slovenia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;26;;
+Slovenia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;165;;
+Slovenia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;61;;
+Slovenia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Construction ;Y15-29;2011;281;;
+Slovenia;M;POP;TOTAL;Professionals;Construction ;Y30-49;2011;861;;
+Slovenia;M;POP;TOTAL;Professionals;Construction ;Y50-64;2011;319;;
+Slovenia;M;POP;TOTAL;Professionals;Construction ;Y65-84;2011;3;;
+Slovenia;M;POP;TOTAL;Professionals;Construction ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Construction ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;356;;
+Slovenia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;1444;;
+Slovenia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;399;;
+Slovenia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;6;;
+Slovenia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Transportation and storage ;Y15-29;2011;98;;
+Slovenia;M;POP;TOTAL;Professionals;Transportation and storage ;Y30-49;2011;645;;
+Slovenia;M;POP;TOTAL;Professionals;Transportation and storage ;Y50-64;2011;269;;
+Slovenia;M;POP;TOTAL;Professionals;Transportation and storage ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Professionals;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y15-29;2011;31;;
+Slovenia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y30-49;2011;131;;
+Slovenia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y50-64;2011;86;;
+Slovenia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Information and communication ;Y15-29;2011;1642;;
+Slovenia;M;POP;TOTAL;Professionals;Information and communication ;Y30-49;2011;4852;;
+Slovenia;M;POP;TOTAL;Professionals;Information and communication ;Y50-64;2011;893;;
+Slovenia;M;POP;TOTAL;Professionals;Information and communication ;Y65-84;2011;17;;
+Slovenia;M;POP;TOTAL;Professionals;Information and communication ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Information and communication ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y15-29;2011;343;;
+Slovenia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y30-49;2011;1552;;
+Slovenia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y50-64;2011;327;;
+Slovenia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Real estate activities ;Y15-29;2011;32;;
+Slovenia;M;POP;TOTAL;Professionals;Real estate activities ;Y30-49;2011;132;;
+Slovenia;M;POP;TOTAL;Professionals;Real estate activities ;Y50-64;2011;70;;
+Slovenia;M;POP;TOTAL;Professionals;Real estate activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Professionals;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y15-29;2011;1980;;
+Slovenia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y30-49;2011;6029;;
+Slovenia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y50-64;2011;2234;;
+Slovenia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y65-84;2011;93;;
+Slovenia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y15-29;2011;138;;
+Slovenia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y30-49;2011;252;;
+Slovenia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y50-64;2011;125;;
+Slovenia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Not applicable ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Not applicable ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Not applicable ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Not applicable ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Not applicable ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Not applicable ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;468;;
+Slovenia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;4540;;
+Slovenia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;1894;;
+Slovenia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;49;;
+Slovenia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Education ;Y15-29;2011;1485;;
+Slovenia;M;POP;TOTAL;Professionals;Education ;Y30-49;2011;5749;;
+Slovenia;M;POP;TOTAL;Professionals;Education ;Y50-64;2011;2955;;
+Slovenia;M;POP;TOTAL;Professionals;Education ;Y65-84;2011;174;;
+Slovenia;M;POP;TOTAL;Professionals;Education ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Education ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y15-29;2011;533;;
+Slovenia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y30-49;2011;2313;;
+Slovenia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y50-64;2011;1391;;
+Slovenia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y65-84;2011;198;;
+Slovenia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y15-29;2011;232;;
+Slovenia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y30-49;2011;1470;;
+Slovenia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y50-64;2011;676;;
+Slovenia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y65-84;2011;18;;
+Slovenia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Other service activities ;Y15-29;2011;129;;
+Slovenia;M;POP;TOTAL;Professionals;Other service activities ;Y30-49;2011;593;;
+Slovenia;M;POP;TOTAL;Professionals;Other service activities ;Y50-64;2011;348;;
+Slovenia;M;POP;TOTAL;Professionals;Other service activities ;Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Professionals;Other service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Other service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;2;;
+Slovenia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Slovenia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Not stated ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Not stated ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Not stated ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Not stated ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Not stated ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Professionals;Not stated ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y15-29;2011;33;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y30-49;2011;171;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y50-64;2011;92;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y15-29;2011;41;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y30-49;2011;239;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y50-64;2011;76;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y15-29;2011;2242;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y30-49;2011;10021;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y50-64;2011;5197;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y65-84;2011;6;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;264;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1215;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;748;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;5;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;86;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;423;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;315;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y15-29;2011;993;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y30-49;2011;3428;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y50-64;2011;2047;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y65-84;2011;9;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Construction ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1904;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;8004;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2603;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y15-29;2011;481;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y30-49;2011;1970;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y50-64;2011;938;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y15-29;2011;244;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y30-49;2011;1003;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y50-64;2011;438;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y15-29;2011;697;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y30-49;2011;3088;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y50-64;2011;932;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y65-84;2011;6;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Information and communication ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y15-29;2011;609;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y30-49;2011;2542;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y50-64;2011;900;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y65-84;2011;4;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y15-29;2011;77;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y30-49;2011;411;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y50-64;2011;238;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y15-29;2011;1119;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y30-49;2011;3605;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y50-64;2011;1500;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y65-84;2011;5;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y15-29;2011;405;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y30-49;2011;765;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y50-64;2011;251;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not applicable ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y15-29;2011;184;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y30-49;2011;2175;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y50-64;2011;1218;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y65-84;2011;7;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y15-29;2011;187;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y30-49;2011;639;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y50-64;2011;217;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Education ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y15-29;2011;1236;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y30-49;2011;1563;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y50-64;2011;450;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y65-84;2011;11;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y15-29;2011;470;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y30-49;2011;1105;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y50-64;2011;372;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y65-84;2011;8;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y15-29;2011;97;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y30-49;2011;412;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y50-64;2011;176;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Other service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;4;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not stated ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y15-29;2011;10;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y30-49;2011;55;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y50-64;2011;39;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y15-29;2011;6;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y30-49;2011;14;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y50-64;2011;15;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y15-29;2011;673;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y30-49;2011;2675;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y50-64;2011;1584;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;17;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;64;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;78;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;42;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;149;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;106;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Construction ;Y15-29;2011;108;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Construction ;Y30-49;2011;371;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Construction ;Y50-64;2011;307;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Construction ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Construction ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Construction ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;1539;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;3487;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;1175;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y15-29;2011;970;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y30-49;2011;3991;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y50-64;2011;1470;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y65-84;2011;3;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y15-29;2011;170;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y30-49;2011;352;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y50-64;2011;177;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y15-29;2011;159;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y30-49;2011;307;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y50-64;2011;122;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Information and communication ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y15-29;2011;329;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y30-49;2011;871;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y50-64;2011;451;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y15-29;2011;23;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y30-49;2011;57;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y50-64;2011;40;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y15-29;2011;203;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y30-49;2011;539;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y50-64;2011;274;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y15-29;2011;303;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y30-49;2011;459;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y50-64;2011;199;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Not applicable ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y15-29;2011;157;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y30-49;2011;567;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y50-64;2011;310;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Education ;Y15-29;2011;31;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Education ;Y30-49;2011;109;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Education ;Y50-64;2011;134;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Education ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Education ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Education ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y15-29;2011;79;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y30-49;2011;232;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y50-64;2011;149;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y15-29;2011;136;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y30-49;2011;823;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y50-64;2011;275;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y15-29;2011;42;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y30-49;2011;96;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y50-64;2011;46;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Other service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;1;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Not stated ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Not stated ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Not stated ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Not stated ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Not stated ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Clerical support workers;Not stated ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y15-29;2011;54;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y30-49;2011;136;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y50-64;2011;79;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y15-29;2011;10;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y30-49;2011;20;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y50-64;2011;7;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y15-29;2011;350;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y30-49;2011;1129;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y50-64;2011;635;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;22;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;73;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;41;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;18;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;120;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;90;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Construction ;Y15-29;2011;104;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Construction ;Y30-49;2011;275;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Construction ;Y50-64;2011;170;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Construction ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Construction ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Construction ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;3560;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;7567;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2541;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;7;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y15-29;2011;143;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y30-49;2011;682;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y50-64;2011;340;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y15-29;2011;2786;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y30-49;2011;4626;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y50-64;2011;1378;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y65-84;2011;8;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y15-29;2011;44;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y30-49;2011;136;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y50-64;2011;55;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Information and communication ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y15-29;2011;39;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y30-49;2011;155;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y50-64;2011;76;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y15-29;2011;55;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y30-49;2011;206;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y50-64;2011;164;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y15-29;2011;82;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y30-49;2011;265;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y50-64;2011;95;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y15-29;2011;1274;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y30-49;2011;2940;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y50-64;2011;1864;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y65-84;2011;4;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Not applicable ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y15-29;2011;1482;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y30-49;2011;4629;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y50-64;2011;473;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Education ;Y15-29;2011;297;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Education ;Y30-49;2011;1314;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Education ;Y50-64;2011;829;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Education ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Education ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Education ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y15-29;2011;319;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y30-49;2011;840;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y50-64;2011;394;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y65-84;2011;3;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y15-29;2011;181;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y30-49;2011;523;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y50-64;2011;247;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y15-29;2011;324;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y30-49;2011;547;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y50-64;2011;189;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Other service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;5;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;13;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;7;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Not stated ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Not stated ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Not stated ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Not stated ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Not stated ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Service and sales workers;Not stated ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y15-29;2011;1026;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y30-49;2011;6150;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y50-64;2011;4832;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y65-84;2011;57;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y15-29;2011;45;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y30-49;2011;139;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y50-64;2011;99;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;1;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;13;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;2;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;18;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;56;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;15;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y15-29;2011;4;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y30-49;2011;40;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y50-64;2011;18;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;31;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;116;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;53;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y15-29;2011;4;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y30-49;2011;20;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y50-64;2011;9;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y15-29;2011;3;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y30-49;2011;28;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y50-64;2011;17;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y15-29;2011;1;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y30-49;2011;1;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y30-49;2011;1;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y50-64;2011;3;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y15-29;2011;6;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y30-49;2011;22;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y50-64;2011;16;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y15-29;2011;64;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y30-49;2011;166;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y50-64;2011;56;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y15-29;2011;21;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y30-49;2011;109;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y50-64;2011;81;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y15-29;2011;1;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y30-49;2011;13;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y50-64;2011;5;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y30-49;2011;16;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y50-64;2011;13;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y15-29;2011;9;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y30-49;2011;27;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y50-64;2011;11;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y15-29;2011;2;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y30-49;2011;13;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y50-64;2011;6;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;13;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;20;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;5;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y15-29;2011;55;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y30-49;2011;230;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y50-64;2011;134;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y15-29;2011;93;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y30-49;2011;465;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y50-64;2011;91;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y15-29;2011;10133;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y30-49;2011;33380;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y50-64;2011;14934;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y65-84;2011;9;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;311;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;1385;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;644;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;181;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;988;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;595;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y15-29;2011;7486;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y30-49;2011;22759;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y50-64;2011;9094;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y65-84;2011;18;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Construction ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;2973;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;7207;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;2377;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y15-29;2011;247;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y30-49;2011;992;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y50-64;2011;510;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y15-29;2011;192;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y30-49;2011;539;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y50-64;2011;258;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y15-29;2011;187;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y30-49;2011;673;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y50-64;2011;213;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Information and communication ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y15-29;2011;43;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y30-49;2011;103;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y50-64;2011;45;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y15-29;2011;71;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y30-49;2011;220;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y50-64;2011;168;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y15-29;2011;646;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y30-49;2011;1679;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y50-64;2011;827;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y65-84;2011;3;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y15-29;2011;485;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y30-49;2011;1130;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y50-64;2011;356;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Not applicable ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y15-29;2011;48;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y30-49;2011;321;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y50-64;2011;241;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Education ;Y15-29;2011;24;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Education ;Y30-49;2011;179;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Education ;Y50-64;2011;158;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Education ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Education ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Education ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y15-29;2011;29;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y30-49;2011;294;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y50-64;2011;243;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y15-29;2011;70;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y30-49;2011;322;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y50-64;2011;219;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y15-29;2011;151;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y30-49;2011;583;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y50-64;2011;266;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Other service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;3;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;9;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;3;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Craft and related trades workers;Not stated ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y15-29;2011;109;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y30-49;2011;422;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y50-64;2011;244;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y15-29;2011;260;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y30-49;2011;749;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y50-64;2011;128;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y15-29;2011;4076;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y30-49;2011;13589;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y50-64;2011;6193;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y65-84;2011;5;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;17;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;148;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;122;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;175;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;878;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;455;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y15-29;2011;1234;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y30-49;2011;3883;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y50-64;2011;1907;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;570;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2089;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;770;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;4;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y15-29;2011;3821;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y30-49;2011;14594;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y50-64;2011;6277;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y65-84;2011;30;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y15-29;2011;55;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y30-49;2011;174;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y50-64;2011;89;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y15-29;2011;12;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y30-49;2011;67;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y50-64;2011;34;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y15-29;2011;14;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y30-49;2011;41;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y50-64;2011;29;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y15-29;2011;18;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y30-49;2011;63;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y50-64;2011;59;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y15-29;2011;179;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y30-49;2011;373;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y50-64;2011;167;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y15-29;2011;365;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y30-49;2011;521;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y50-64;2011;270;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y15-29;2011;7;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y30-49;2011;90;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y50-64;2011;69;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y15-29;2011;12;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y30-49;2011;87;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y50-64;2011;87;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y15-29;2011;129;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y30-49;2011;259;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y50-64;2011;208;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y65-84;2011;3;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y15-29;2011;22;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y30-49;2011;65;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y50-64;2011;44;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y15-29;2011;29;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y30-49;2011;161;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y50-64;2011;79;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;7;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;8;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;1;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y15-29;2011;113;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y30-49;2011;485;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y50-64;2011;432;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y65-84;2011;4;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y15-29;2011;51;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y30-49;2011;204;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y50-64;2011;53;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y15-29;2011;4033;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y30-49;2011;8962;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y50-64;2011;4327;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;33;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;114;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;78;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;427;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;1736;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;903;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Construction ;Y15-29;2011;3705;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Construction ;Y30-49;2011;8434;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Construction ;Y50-64;2011;2969;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Construction ;Y65-84;2011;6;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Construction ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Construction ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;932;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;2047;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;769;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y15-29;2011;400;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y30-49;2011;999;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y50-64;2011;487;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y65-84;2011;2;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y15-29;2011;611;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y30-49;2011;683;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y50-64;2011;207;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y15-29;2011;29;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y30-49;2011;93;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y50-64;2011;39;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Information and communication ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y15-29;2011;17;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y30-49;2011;66;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y50-64;2011;36;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y15-29;2011;20;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y30-49;2011;107;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y50-64;2011;88;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y15-29;2011;375;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y30-49;2011;625;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y50-64;2011;273;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y15-29;2011;1408;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y30-49;2011;1930;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y50-64;2011;693;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Not applicable ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;66;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;347;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;378;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Education ;Y15-29;2011;53;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Education ;Y30-49;2011;147;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Education ;Y50-64;2011;121;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Education ;Y65-84;2011;1;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Education ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Education ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y15-29;2011;122;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y30-49;2011;360;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y50-64;2011;144;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y15-29;2011;45;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y30-49;2011;189;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y50-64;2011;149;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y15-29;2011;63;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y30-49;2011;173;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y50-64;2011;77;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Other service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;29;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;69;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;58;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Not stated ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Not stated ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Not stated ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Not stated ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Not stated ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Elementary occupations;Not stated ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Mining and quarrying ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Manufacturing ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Manufacturing ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Manufacturing ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Manufacturing ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Manufacturing ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Manufacturing ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Construction ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Construction ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Construction ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Construction ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Construction ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Construction ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Transportation and storage ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Transportation and storage ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Transportation and storage ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Transportation and storage ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Transportation and storage ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Transportation and storage ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Information and communication ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Information and communication ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Information and communication ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Information and communication ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Information and communication ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Information and communication ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Real estate activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Real estate activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Real estate activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Real estate activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Real estate activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Real estate activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Not applicable ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Not applicable ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Not applicable ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Not applicable ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Not applicable ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Not applicable ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Education ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Education ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Education ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Education ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Education ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Education ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Human health and social work activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Other service activities ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Other service activities ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Other service activities ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Other service activities ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Other service activities ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Other service activities ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Not stated ;Y15-29;2011;353;;
+Slovenia;M;POP;TOTAL;Not stated;Not stated ;Y30-49;2011;2313;;
+Slovenia;M;POP;TOTAL;Not stated;Not stated ;Y50-64;2011;866;;
+Slovenia;M;POP;TOTAL;Not stated;Not stated ;Y65-84;2011;8;;
+Slovenia;M;POP;TOTAL;Not stated;Not stated ;Y_GE85;2011;0;;
+Slovenia;M;POP;TOTAL;Not stated;Not stated ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Mining and quarrying ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Manufacturing ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Manufacturing ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Manufacturing ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Manufacturing ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Manufacturing ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Manufacturing ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Construction ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Construction ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Construction ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Construction ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Construction ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Construction ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Transportation and storage ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Information and communication ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Information and communication ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Information and communication ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Information and communication ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Information and communication ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Information and communication ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Real estate activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Real estate activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Real estate activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Real estate activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Real estate activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Real estate activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Not applicable ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Not applicable ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Not applicable ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Not applicable ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Not applicable ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Not applicable ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Education ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Education ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Education ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Education ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Education ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Education ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Human health and social work activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Other service activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Other service activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Other service activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Other service activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Other service activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Other service activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Not stated ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Not stated ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Not stated ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Not stated ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Not stated ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Not applicable;Not stated ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Manufacturing ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Construction ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Construction ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Construction ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Construction ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Construction ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Construction ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles ";Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Transportation and storage ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Information and communication ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Real estate activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Not applicable ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security ";Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Education ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Education ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Education ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Education ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Education ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Education ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Other service activities ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use ";Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Armed forces occupations;Not stated ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Mining and quarrying ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Mining and quarrying ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Mining and quarrying ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Mining and quarrying ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Mining and quarrying ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Mining and quarrying ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Manufacturing ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Manufacturing ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Manufacturing ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Manufacturing ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Manufacturing ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Manufacturing ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply ;Y_LT15;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y15-29;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y30-49;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y50-64;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y65-84;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_GE85;2011;0;;
+Slovakia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities ";Y_LT15;2011